From dc53df772fe7ceb2c3f5d128a6f3638cc73ccfce Mon Sep 17 00:00:00 2001 From: Tomas Susanka Date: Wed, 29 Jan 2020 10:26:06 +0000 Subject: [PATCH] python: passphrase on host is the default for T1 --- python/src/trezorlib/client.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/src/trezorlib/client.py b/python/src/trezorlib/client.py index a438f669fd..17a9795647 100644 --- a/python/src/trezorlib/client.py +++ b/python/src/trezorlib/client.py @@ -136,6 +136,9 @@ class TrezorClient: self.session_counter = 0 self.init_device() + if self.features.model == "1": # TODO @matejcik: move this to the UI object + self.passphrase_on_host = True + def open(self): if self.session_counter == 0: self.transport.begin_session()