From 8030fa9a96cc1af46222d2d7e09a133c225da22c Mon Sep 17 00:00:00 2001 From: emmanuelm41 Date: Thu, 31 Oct 2024 15:16:05 -0300 Subject: [PATCH] feat: decrease items to 3 on blind signing mode --- app/src/common/tx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/common/tx.c b/app/src/common/tx.c index 3c326ac..53661e4 100644 --- a/app/src/common/tx.c +++ b/app/src/common/tx.c @@ -109,7 +109,7 @@ void tx_parse_reset() zxerr_t tx_getNumItems(uint8_t *num_items) { if(app_mode_blindsign()){ - *num_items = 3; + *num_items = 2; return zxerr_ok; }