From eb60e0d2e092e2bddce2734a0bb2efdb6fd5437e Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 21 Aug 2016 22:15:17 +0200 Subject: [PATCH] fix hw_type --- plugins/keepkey/keepkey.py | 2 +- plugins/trezor/plugin.py | 1 - plugins/trezor/trezor.py | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) 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):