v0.0.10 - Show existing seed phrase after mnemonic login for visibility

This commit is contained in:
Laan Tungir
2026-05-04 06:47:29 -04:00
parent 48ecf5f934
commit e7d8b49ecc
2 changed files with 7 additions and 2 deletions

View File

@@ -10,8 +10,8 @@
*/
#define NT_VERSION_MAJOR 0
#define NT_VERSION_MINOR 0
#define NT_VERSION_PATCH 9
#define NT_VERSION "v0.0.9"
#define NT_VERSION_PATCH 10
#define NT_VERSION "v0.0.10"
#include <stdio.h>
#include <stdlib.h>

View File

@@ -519,6 +519,11 @@ void menu_login(void) {
continue;
}
tui_print("");
tui_print("Using seed phrase: %s", g_state.seed_phrase);
tui_print("");
tui_get_line("Press Enter to continue >", input, (int)sizeof(input));
(void)state_load_user_info();
return;
}