remove deprecated method

This commit is contained in:
ThomasV 2016-08-31 08:31:19 +02:00
parent 9146986a1f
commit 2a9c9cf654
1 changed files with 0 additions and 15 deletions

View File

@ -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)