Skip to content
This repository has been archived by the owner on Jun 5, 2019. It is now read-only.

Commit

Permalink
Added code to make trezor-agent work with keepkey.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth Heutmaker committed Jan 7, 2016
1 parent 4093094 commit 53e361b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion trezorlib/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ def callback_WordRequest(self, msg):

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)
Expand Down
1 change: 1 addition & 0 deletions trezorlib/transport_hid.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
DEVICE_IDS = [
(0x10c4, 0xea80), # Shield
(0x534c, 0x0001), # Trezor
(0x2b24, 0x0001), # KeepKey
]

class FakeRead(object):
Expand Down

0 comments on commit 53e361b

Please sign in to comment.