From dbb7f31d39f0ac81c98be9f8b71697cec56d7362 Mon Sep 17 00:00:00 2001 From: LightningHelper <35897350+LightningHelper@users.noreply.github.com> Date: Sun, 18 Jul 2021 19:02:23 -0400 Subject: [PATCH] added minimum word list needed Not every user know the minimum word list that is needed. --- tools/hsmtool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/hsmtool.c b/tools/hsmtool.c index 03766f9bd..656e9b47f 100644 --- a/tools/hsmtool.c +++ b/tools/hsmtool.c @@ -453,7 +453,7 @@ static void get_mnemonic(char *mnemonic) { char *line = NULL; size_t line_size = 0; - printf("Introduce your BIP39 word list separated by space:\n"); + printf("Introduce your BIP39 word list separated by space (at least 12 words):\n"); fflush(stdout); size_t characters = getline(&line, &line_size, stdin); if (characters < 0)