From 8b7e6058ed8c55bd462c26037c21a73af90d6d86 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Fri, 12 Feb 2016 23:11:57 +0100 Subject: [PATCH] Revert "Added code to make trezor-agent work with keepkey." This reverts commit 53e361b70b68e7d5992ca3ec43d7ff1bbc627663. As requested by @dstanchfield here: https://github.com/trezor/python-trezor/pull/49#issuecomment-183486838 --- trezorlib/client.py | 2 +- trezorlib/transport_hid.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/trezorlib/client.py b/trezorlib/client.py index fcd8e20..b89fec8 100644 --- a/trezorlib/client.py +++ b/trezorlib/client.py @@ -346,7 +346,7 @@ class DebugLinkMixin(object): class ProtocolMixin(object): PRIME_DERIVATION_FLAG = 0x80000000 - VENDORS = ('bitcointrezor.com', 'keepkey.com',) + VENDORS = ('bitcointrezor.com',) def __init__(self, *args, **kwargs): super(ProtocolMixin, self).__init__(*args, **kwargs) diff --git a/trezorlib/transport_hid.py b/trezorlib/transport_hid.py index e2f04d8..93219d6 100644 --- a/trezorlib/transport_hid.py +++ b/trezorlib/transport_hid.py @@ -8,7 +8,6 @@ from transport import Transport, ConnectionError, NotImplementedException DEVICE_IDS = [ # (0x10c4, 0xea80), # TREZOR Shield (0x534c, 0x0001), # TREZOR - (0x2b24, 0x0001), # KeepKey ] class FakeRead(object):