diff --git a/plugins/keepkey/keepkey.py b/plugins/keepkey/keepkey.py index 432e65494..26be517bf 100644 --- a/plugins/keepkey/keepkey.py +++ b/plugins/keepkey/keepkey.py @@ -2,7 +2,7 @@ from ..trezor.plugin import TrezorCompatiblePlugin, TrezorCompatibleKeyStore class KeepKey_KeyStore(TrezorCompatibleKeyStore): - wallet_type = 'keepkey' + hw_type = 'keepkey' device = 'KeepKey' diff --git a/plugins/trezor/plugin.py b/plugins/trezor/plugin.py index aba57ca63..bde8d869a 100644 --- a/plugins/trezor/plugin.py +++ b/plugins/trezor/plugin.py @@ -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 diff --git a/plugins/trezor/trezor.py b/plugins/trezor/trezor.py index 19972c86f..5f4ae18de 100644 --- a/plugins/trezor/trezor.py +++ b/plugins/trezor/trezor.py @@ -2,7 +2,7 @@ from .plugin import TrezorCompatiblePlugin, TrezorCompatibleKeyStore class TrezorKeyStore(TrezorCompatibleKeyStore): - wallet_type = 'trezor' + hw_type = 'trezor' device = 'TREZOR' class TrezorPlugin(TrezorCompatiblePlugin):