From 92ab959fbaa6f44d2b648bee438fc156229a2c00 Mon Sep 17 00:00:00 2001 From: Charles-Edouard de la Vergne Date: Mon, 29 Apr 2024 09:44:46 +0200 Subject: [PATCH] Update client to reduce delay (no more slow speculos for Stax) --- client/src/ledger_app_clients/ethereum/eip712/InputData.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/client/src/ledger_app_clients/ethereum/eip712/InputData.py b/client/src/ledger_app_clients/ethereum/eip712/InputData.py index e10bb249..ee6c8c2f 100644 --- a/client/src/ledger_app_clients/ethereum/eip712/InputData.py +++ b/client/src/ledger_app_clients/ethereum/eip712/InputData.py @@ -337,10 +337,7 @@ def next_timeout(_signum: int, _frame): def enable_autonext(): - if app_client._client.firmware.device == 'stax': # Stax Speculos is slow - delay = 1.5 - else: - delay = 1/4 + delay = 1/5 signal.setitimer(signal.ITIMER_REAL, delay, delay)