mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 09:21:39 +00:00
fix: type of account_id
This commit is contained in:
parent
55aa29917d
commit
c101379eb0
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ class TrezorCompatibleKeyStore(Hardware_KeyStore):
|
|||
|
||||
def load(self, storage, name):
|
||||
self.xpub = storage.get('master_public_keys', {}).get(name)
|
||||
self.account_id = storage.get('account_id')
|
||||
self.account_id = int(storage.get('account_id'))
|
||||
|
||||
def get_derivation(self):
|
||||
return "m/44'/0'/%d'"%self.account_id
|
||||
|
|
Loading…
Add table
Reference in a new issue