fix missing parameter

This commit is contained in:
ThomasV 2017-02-23 08:44:56 +01:00
parent 0955b0d34d
commit ac53bc5089
1 changed files with 1 additions and 1 deletions

View File

@ -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):