cached wallet id
This commit is contained in:
parent
400d79d6ab
commit
6fb1c72b7d
1 changed files with 3 additions and 5 deletions
|
@ -74,12 +74,10 @@ class Wallet:
|
||||||
self.storage = storage or WalletStorage()
|
self.storage = storage or WalletStorage()
|
||||||
self.preferences = TimestampedPreferences(preferences or {})
|
self.preferences = TimestampedPreferences(preferences or {})
|
||||||
self.encryption_password = None
|
self.encryption_password = None
|
||||||
|
self.id = self.get_id()
|
||||||
|
|
||||||
@property
|
def get_id(self):
|
||||||
def id(self):
|
return os.path.basename(self.storage.path) if self.storage.path else self.name
|
||||||
if self.storage.path:
|
|
||||||
return os.path.basename(self.storage.path)
|
|
||||||
return self.name
|
|
||||||
|
|
||||||
def add_account(self, account: 'Account'):
|
def add_account(self, account: 'Account'):
|
||||||
self.accounts.append(account)
|
self.accounts.append(account)
|
||||||
|
|
Loading…
Reference in a new issue