add get_master_public_key to all wallets

This commit is contained in:
ThomasV 2016-07-01 17:39:21 +02:00
parent 59825c913c
commit 824f86475e
2 changed files with 4 additions and 1 deletions

View File

@ -49,7 +49,7 @@ Popup:
TopLabel:
text: _('Master Public Key')
RefLabel:
data: app.wallet.get_master_public_key()
data: app.wallet.get_master_public_key() or 'None'
name: _('Master Public Key')
TopLabel:
id: seed_label

View File

@ -231,6 +231,9 @@ class Abstract_Wallet(PrintError):
self.use_encryption = use_encryption
self.storage.put('use_encryption', use_encryption)
def get_master_public_key(self):
pass
@profiler
def load_transactions(self):
self.txi = self.storage.get('txi', {})