mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 02:35:20 +00:00
fix #1344
This commit is contained in:
parent
9947173183
commit
e2c19ff871
1 changed files with 3 additions and 1 deletions
|
@ -1463,8 +1463,10 @@ class Deterministic_Wallet(Abstract_Wallet):
|
||||||
def get_master_public_keys(self):
|
def get_master_public_keys(self):
|
||||||
out = {}
|
out = {}
|
||||||
for k, account in self.accounts.items():
|
for k, account in self.accounts.items():
|
||||||
|
if type(account) == ImportedAccount:
|
||||||
|
continue
|
||||||
name = self.get_account_name(k)
|
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
|
out[name] = mpk_text
|
||||||
return out
|
return out
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue