This commit is contained in:
ThomasV 2015-07-05 16:19:44 +02:00
parent 9947173183
commit e2c19ff871
1 changed files with 3 additions and 1 deletions

View File

@ -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