Skip to content

Commit

Permalink
feat: decrease items to 3 on blind signing mode
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelm41 committed Oct 31, 2024
1 parent cc8ba09 commit 8030fa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/common/tx.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ void tx_parse_reset()
zxerr_t tx_getNumItems(uint8_t *num_items)
{
if(app_mode_blindsign()){

Check warning

Code scanning / CodeQL

Implicit function declaration Warning

Function call implicitly declares 'app_mode_blindsign'.
*num_items = 3;
*num_items = 2;
return zxerr_ok;
}

Expand Down

0 comments on commit 8030fa9

Please sign in to comment.