From a2d9716564b0624518739c513cfb186481fa39a6 Mon Sep 17 00:00:00 2001 From: moisses89 <7888669+moisses89@users.noreply.github.com> Date: Wed, 13 Dec 2023 17:51:08 +0100 Subject: [PATCH] Fix pin matrix does not display --- safe_cli/operators/hw_wallets/trezor_wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/safe_cli/operators/hw_wallets/trezor_wallet.py b/safe_cli/operators/hw_wallets/trezor_wallet.py index 0ac2ed8..16b2998 100644 --- a/safe_cli/operators/hw_wallets/trezor_wallet.py +++ b/safe_cli/operators/hw_wallets/trezor_wallet.py @@ -18,7 +18,7 @@ def get_trezor_client() -> TrezorClient: This method is cached to share the same configuration between trezor calls while the class is not instantiated. :return: """ - ui = ClickUI(passphrase_on_host=True) + ui = ClickUI(passphrase_on_host=True, always_prompt=True) client = get_default_client(ui=ui) return client