URI: 
       tremove deprecated method - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 2a9c9cf654f687f69b997df94e83537ca0e97b84
   DIR parent 9146986a1fbc2a8a224b741cd7aaaafbbfe60fb5
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Wed, 31 Aug 2016 08:31:19 +0200
       
       remove deprecated method
       
       Diffstat:
         M plugins/ledger/qt.py                |      15 ---------------
       
       1 file changed, 0 insertions(+), 15 deletions(-)
       ---
   DIR diff --git a/plugins/ledger/qt.py b/plugins/ledger/qt.py
       t@@ -33,21 +33,6 @@ class Plugin(LedgerPlugin):
                    # Trigger a pairing
                    keystore.thread.add(partial(self.get_client, keystore))
        
       -    def create_keystore(self, hw_type, derivation, wizard):
       -        from electrum.keystore import hardware_keystore
       -        # create keystore
       -        handler = BTChipQTHandler(wizard)
       -        client = self.get_client()
       -        xpub = self.get_public_key(derivation)
       -        d = {
       -            'xpub': self.xpub,
       -            'type': 'hardware',
       -            'hw_type': hw_type,
       -            'derivation': derivation
       -        }
       -        k = hardware_keystore(hw_type, d)
       -        return k
       -
            def create_handler(self, wizard):
                return BTChipQTHandler(wizard)