electrum

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

commit 1662a9e9c5ea8668c7889fc0b47903c8bea2fa55
parent 40bd5e9c5f3a6b3a26043869a2f69af52091ca99
Author: ThomasV <thomasv@gitorious>
Date:   Fri, 25 Apr 2014 10:39:07 +0200

fix: get_master_public_key

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

diff --git a/lib/wallet.py b/lib/wallet.py @@ -1739,7 +1739,7 @@ class OldWallet(NewWallet): return {'Main Account':mpk} def create_accounts(self, password): - mpk = self.get_master_public_key() + mpk = self.storage.get("master_public_key") self.create_account(mpk) def create_account(self, mpk):