Added code to make trezor-agent work with keepkey.

pull/1/head
Kenneth Heutmaker 8 years ago
parent 40930948d1
commit 53e361b70b

@ -343,7 +343,7 @@ class DebugLinkMixin(object):
class ProtocolMixin(object):
PRIME_DERIVATION_FLAG = 0x80000000
VENDORS = ('bitcointrezor.com',)
VENDORS = ('bitcointrezor.com', 'keepkey.com',)
def __init__(self, *args, **kwargs):
super(ProtocolMixin, self).__init__(*args, **kwargs)

@ -8,6 +8,7 @@ from transport import Transport, ConnectionError, NotImplementedException
DEVICE_IDS = [
(0x10c4, 0xea80), # Shield
(0x534c, 0x0001), # Trezor
(0x2b24, 0x0001), # KeepKey
]
class FakeRead(object):

Loading…
Cancel
Save