diff --git a/plugins/trezor/plugin.py b/plugins/trezor/plugin.py index 242b5a45e..1f8878afd 100644 --- a/plugins/trezor/plugin.py +++ b/plugins/trezor/plugin.py @@ -104,7 +104,9 @@ class TrezorCompatiblePlugin(HW_PluginBase): return None def create_client(self, device, handler): - transport = self._try_bridge(device) or self._try_hid(device) + # disable bridge because it seems to never returns if keepkey is plugged + #transport = self._try_bridge(device) or self._try_hid(device) + transport = self._try_hid(device) if not transport: self.print_error("cannot connect to device") return