electrum

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

commit 430c7aa92ed625605f9f54d464c6d1623c2a99f9
parent c9fc6275ab47936f75f74d1a48aa4affabf6a2b7
Author: ThomasV <thomasv@gitorious>
Date:   Sun,  4 May 2014 19:52:47 +0200

fix: get_seed

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

diff --git a/lib/wallet.py b/lib/wallet.py @@ -1378,7 +1378,7 @@ class NewWallet(Deterministic_Wallet): def create_master_keys(self, password): - xpriv, xpub = bip32_root(self.get_seed(password)) + xpriv, xpub = bip32_root(mnemonic_to_seed(self.get_seed(password),'').encode('hex')) self.add_master_public_key("m/", xpub) self.add_master_private_key("m/", xpriv, password)