electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit ac53bc50895878ef628e83c2ebbe15ec1016227b
parent 0955b0d34dd6d562e2a37777d18e4d1b74c36d8b
Author: ThomasV <thomasv@electrum.org>
Date:   Thu, 23 Feb 2017 08:44:56 +0100

fix missing parameter

Diffstat:
Mlib/base_wizard.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/base_wizard.py b/lib/base_wizard.py @@ -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):