tfix missing parameter - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit ac53bc50895878ef628e83c2ebbe15ec1016227b
DIR parent 0955b0d34dd6d562e2a37777d18e4d1b74c36d8b
HTML Author: ThomasV <thomasv@electrum.org>
Date: Thu, 23 Feb 2017 08:44:56 +0100
fix missing parameter
Diffstat:
M lib/base_wizard.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/lib/base_wizard.py b/lib/base_wizard.py
t@@ -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):