electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit eb60e0d2e092e2bddce2734a0bb2efdb6fd5437e
parent c63a0f21982ae3f83b84e2a2357884c562e2b6ee
Author: ThomasV <thomasv@electrum.org>
Date:   Sun, 21 Aug 2016 22:15:17 +0200

fix hw_type

Diffstat:
Mplugins/keepkey/keepkey.py | 2+-
Mplugins/trezor/plugin.py | 1-
Mplugins/trezor/trezor.py | 2+-
3 files changed, 2 insertions(+), 3 deletions(-)

diff --git 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 @@ -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 @@ -2,7 +2,7 @@ from .plugin import TrezorCompatiblePlugin, TrezorCompatibleKeyStore class TrezorKeyStore(TrezorCompatibleKeyStore): - wallet_type = 'trezor' + hw_type = 'trezor' device = 'TREZOR' class TrezorPlugin(TrezorCompatiblePlugin):