Skip to content

Commit eb60e0d

Browse files
committed
fix hw_type
1 parent c63a0f2 commit eb60e0d

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

plugins/keepkey/keepkey.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
class KeepKey_KeyStore(TrezorCompatibleKeyStore):
5-
wallet_type = 'keepkey'
5+
hw_type = 'keepkey'
66
device = 'KeepKey'
77

88

plugins/trezor/plugin.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
TIM_NEW, TIM_RECOVER, TIM_MNEMONIC, TIM_PRIVKEY = range(0, 4)
2121

2222
class TrezorCompatibleKeyStore(Hardware_KeyStore):
23-
hw_type = 'trezor'
2423

2524
def get_derivation(self):
2625
return self.derivation

plugins/trezor/trezor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
class TrezorKeyStore(TrezorCompatibleKeyStore):
5-
wallet_type = 'trezor'
5+
hw_type = 'trezor'
66
device = 'TREZOR'
77

88
class TrezorPlugin(TrezorCompatiblePlugin):

0 commit comments

Comments
 (0)