electrum

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

commit cf03f153d9fe24d376a749fb55486df34f26f48e
parent bf3f67c043a5c599c725318c20821778425ddf51
Author: ThomasV <thomasv@gitorious>
Date:   Wed, 13 Aug 2014 16:28:27 +0200

fix: get_master_public_key

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

diff --git a/lib/wallet.py b/lib/wallet.py @@ -1247,8 +1247,7 @@ class NewWallet(Deterministic_Wallet): return 'm/' in self.master_private_keys.keys() def get_master_public_key(self): - """xpub of the main account""" - return self.master_public_keys.get("m/0'") + return self.master_public_keys.get("m/") def get_master_public_keys(self): out = {}