Browse Source

add get_type method to PendingAccount

283
ThomasV 11 years ago
parent
commit
0a810de898
  1. 3
      lib/account.py

3
lib/account.py

@ -95,6 +95,9 @@ class PendingAccount(Account):
def get_master_pubkeys(self):
return []
def get_type(self):
return _('pending')
class ImportedAccount(Account):
def __init__(self, d):
self.keypairs = d['imported']

Loading…
Cancel
Save