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