tfix: get_action - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 769b4002cd0c7e03ca9f490481e7e6d64a323a7d DIR parent 545cd7a4134e1094d9e16497c7b6fdfc8a312d0b HTML Author: ThomasV <thomasv@gitorious> Date: Mon, 7 Jul 2014 23:35:01 +0200 fix: get_action Diffstat: M lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/lib/wallet.py b/lib/wallet.py t@@ -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'