commit 824f86475eb1903303cc9e3a26b6ed46bc051863
parent 59825c913c31cd2fccbe8ed3b034d9aa795c35be
Author: ThomasV <thomasv@electrum.org>
Date: Fri, 1 Jul 2016 17:39:21 +0200
add get_master_public_key to all wallets
Diffstat:
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/gui/kivy/uix/ui_screens/status.kv b/gui/kivy/uix/ui_screens/status.kv
@@ -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
diff --git a/lib/wallet.py b/lib/wallet.py
@@ -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', {})