Skip to content

Commit

Permalink
Fix CI issues
Browse files Browse the repository at this point in the history
  • Loading branch information
fbeutin-ledger committed Feb 1, 2023
1 parent dec5919 commit 04d0ad3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ typedef enum InstructionCode {
extern volatile bool G_called_from_swap;
extern volatile bool G_swap_response_ready;


// display stepped screens
extern unsigned int ux_step;
extern unsigned int ux_step_count;
Expand Down
3 changes: 1 addition & 2 deletions src/signMessage.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ static uint8_t set_result_sign_message() {
return SIGNATURE_LENGTH;
}


//////////////////////////////////////////////////////////////////////

UX_STEP_CB(ux_approve_step,
Expand Down Expand Up @@ -213,7 +212,7 @@ void handle_sign_message_ui(volatile unsigned int *flags) {
if (G_called_from_swap) {
if (G_swap_response_ready) {
// Safety against trying to make the app sign multiple TX
PRINTF("Safety agains double signing triggered\n");
PRINTF("Safety against double signing triggered\n");
os_sched_exit(-1);
} else {
// We will quit the app after this transaction, whether it succeeds or fails
Expand Down

0 comments on commit 04d0ad3

Please sign in to comment.