fix hw_type

This commit is contained in:
ThomasV 2016-08-21 22:15:17 +02:00
parent c63a0f2198
commit eb60e0d2e0
3 changed files with 2 additions and 3 deletions

View file

@ -2,7 +2,7 @@ from ..trezor.plugin import TrezorCompatiblePlugin, TrezorCompatibleKeyStore
class KeepKey_KeyStore(TrezorCompatibleKeyStore):
wallet_type = 'keepkey'
hw_type = 'keepkey'
device = 'KeepKey'

View file

@ -20,7 +20,6 @@ from ..hw_wallet import HW_PluginBase
TIM_NEW, TIM_RECOVER, TIM_MNEMONIC, TIM_PRIVKEY = range(0, 4)
class TrezorCompatibleKeyStore(Hardware_KeyStore):
hw_type = 'trezor'
def get_derivation(self):
return self.derivation

View file

@ -2,7 +2,7 @@ from .plugin import TrezorCompatiblePlugin, TrezorCompatibleKeyStore
class TrezorKeyStore(TrezorCompatibleKeyStore):
wallet_type = 'trezor'
hw_type = 'trezor'
device = 'TREZOR'
class TrezorPlugin(TrezorCompatiblePlugin):