From 769b4002cd0c7e03ca9f490481e7e6d64a323a7d Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 7 Jul 2014 23:35:01 +0200 Subject: [PATCH] fix: get_action --- lib/wallet.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/wallet.py b/lib/wallet.py index 8230481..d1be41d 100644 --- 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' -- 1.7.1