Skip to content

Commit

Permalink
Fix get_extended_pubkey and get_wallet_address not returning to dashb…
Browse files Browse the repository at this point in the history
…oard when done
  • Loading branch information
bigspider committed Apr 21, 2023
1 parent 0981826 commit a2f1632
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/display.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ bool ui_display_pubkey(dispatcher_context_t *context,
ui_display_pubkey_suspicious_flow();
}

return io_ui_process(context, false);
return io_ui_process(context, true);
}

bool ui_display_message_hash(dispatcher_context_t *context,
Expand Down Expand Up @@ -145,7 +145,7 @@ bool ui_display_wallet_address(dispatcher_context_t *context,
ui_display_receive_in_wallet_flow();
}

return io_ui_process(context, false);
return io_ui_process(context, true);
}

bool ui_authorize_wallet_spend(dispatcher_context_t *context, const char *wallet_name) {
Expand Down

0 comments on commit a2f1632

Please sign in to comment.