electrum

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

commit 769b4002cd0c7e03ca9f490481e7e6d64a323a7d
parent 545cd7a4134e1094d9e16497c7b6fdfc8a312d0b
Author: ThomasV <thomasv@gitorious>
Date:   Mon,  7 Jul 2014 23:35:01 +0200

fix: get_action

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

diff --git a/lib/wallet.py b/lib/wallet.py @@ -1256,7 +1256,7 @@ class Deterministic_Wallet(Abstract_Wallet): return True def get_action(self): - if not self.master_public_keys: + if not self.get_master_public_key(): return 'create_seed' if not self.accounts: return 'create_accounts'