tfix hw_type - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit eb60e0d2e092e2bddce2734a0bb2efdb6fd5437e DIR parent c63a0f21982ae3f83b84e2a2357884c562e2b6ee HTML Author: ThomasV <thomasv@electrum.org> Date: Sun, 21 Aug 2016 22:15:17 +0200 fix hw_type Diffstat: M plugins/keepkey/keepkey.py | 2 +- M plugins/trezor/plugin.py | 1 - M plugins/trezor/trezor.py | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) --- DIR diff --git a/plugins/keepkey/keepkey.py b/plugins/keepkey/keepkey.py t@@ -2,7 +2,7 @@ from ..trezor.plugin import TrezorCompatiblePlugin, TrezorCompatibleKeyStore class KeepKey_KeyStore(TrezorCompatibleKeyStore): - wallet_type = 'keepkey' + hw_type = 'keepkey' device = 'KeepKey' DIR diff --git a/plugins/trezor/plugin.py b/plugins/trezor/plugin.py t@@ -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 DIR diff --git a/plugins/trezor/trezor.py b/plugins/trezor/trezor.py t@@ -2,7 +2,7 @@ from .plugin import TrezorCompatiblePlugin, TrezorCompatibleKeyStore class TrezorKeyStore(TrezorCompatibleKeyStore): - wallet_type = 'trezor' + hw_type = 'trezor' device = 'TREZOR' class TrezorPlugin(TrezorCompatiblePlugin):