Skip to content

Commit

Permalink
bip85: fix bip85 24-word generation
Browse files Browse the repository at this point in the history
'24 words' button raise '12-words' event.  Regression in 1.0.21.
Introduced in f33d025
  • Loading branch information
JamieDriver committed Aug 6, 2023
1 parent a0c7eff commit 57c70d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/ui/mnemonic.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ gui_activity_t* make_bip85_mnemonic_words_activity(void)
{ .txt = NULL, .font = GUI_DEFAULT_FONT, .ev_id = GUI_BUTTON_EVENT_NONE } };

btn_data_t menubtns[] = { { .txt = "12 Words", .font = GUI_DEFAULT_FONT, .ev_id = BTN_BIP85_12_WORDS },
{ .txt = "24 Words", .font = GUI_DEFAULT_FONT, .ev_id = BTN_BIP85_12_WORDS } };
{ .txt = "24 Words", .font = GUI_DEFAULT_FONT, .ev_id = BTN_BIP85_24_WORDS } };

gui_activity_t* const act = make_menu_activity("BIP85", hdrbtns, 2, menubtns, 2);

Expand Down

0 comments on commit 57c70d5

Please sign in to comment.