From 0511d7e76f6be38425ff13c2c74b8792e4bfffa4 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 1 Jul 2014 19:17:43 +0200 Subject: [PATCH] fix: get_action should call get_master_public_key --- lib/wallet.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/wallet.py b/lib/wallet.py index f4cc3e7..ed1142a 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -1258,7 +1258,7 @@ class Deterministic_Wallet(Abstract_Wallet): return True def get_action(self): - if not self.get_master_public_keys(): + if not self.get_master_public_key(): return 'create_seed' if not self.accounts: return 'create_accounts' -- 1.7.1