commit e2c19ff87109be409e4c3fcfec9c3c3064bf9ad7 parent 994717318343b2674b9a08e4534cf18bd952173b Author: ThomasV <thomasv@gitorious> Date: Sun, 5 Jul 2015 16:19:44 +0200 fix #1344 Diffstat:
M | lib/wallet.py | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/lib/wallet.py b/lib/wallet.py @@ -1463,8 +1463,10 @@ class Deterministic_Wallet(Abstract_Wallet): def get_master_public_keys(self): out = {} for k, account in self.accounts.items(): + if type(account) == ImportedAccount: + continue name = self.get_account_name(k) - mpk_text = '\n\n'.join( account.get_master_pubkeys() ) + mpk_text = '\n\n'.join(account.get_master_pubkeys()) out[name] = mpk_text return out