Update keepkey too

This commit is contained in:
Neil Booth 2015-12-27 18:25:04 +09:00
parent 11e1c62f28
commit e2628977b3
1 changed files with 2 additions and 5 deletions

View File

@ -1,7 +1,5 @@
from electrum.wallet import BIP32_Hardware_Wallet
from plugins.trezor.client import trezor_client_class from plugins.trezor.client import trezor_client_class
from plugins.trezor.plugin import TrezorCompatiblePlugin from plugins.trezor.plugin import TrezorCompatiblePlugin, TrezorCompatibleWallet
try: try:
from keepkeylib.client import proto, BaseClient, ProtocolMixin from keepkeylib.client import proto, BaseClient, ProtocolMixin
@ -10,9 +8,8 @@ except ImportError:
KEEPKEY = False KEEPKEY = False
class KeepKeyWallet(BIP32_Hardware_Wallet): class KeepKeyWallet(TrezorCompatibleWallet):
wallet_type = 'keepkey' wallet_type = 'keepkey'
root_derivation = "m/44'/0'"
device = 'KeepKey' device = 'KeepKey'