mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-30 00:41:31 +00:00
fix missing parameter
This commit is contained in:
parent
0955b0d34d
commit
ac53bc5089
1 changed files with 1 additions and 1 deletions
|
@ -303,7 +303,7 @@ class BaseWizard(object):
|
|||
k = keystore.BIP32_KeyStore({})
|
||||
bip32_seed = keystore.bip39_to_seed(seed, passphrase)
|
||||
derivation = "m/44'/0'/%d'"%account_id
|
||||
k.add_xprv_from_seed(bip32_seed, derivation)
|
||||
k.add_xprv_from_seed(bip32_seed, 0, derivation)
|
||||
self.on_keystore(k)
|
||||
|
||||
def on_keystore(self, k):
|
||||
|
|
Loading…
Add table
Reference in a new issue