From 28359ee3e0def84c55ce07bb22c61d6713f9428b Mon Sep 17 00:00:00 2001 From: natalie Date: Mon, 5 Jun 2023 19:26:46 +0100 Subject: [PATCH] Update secret key input text Co-authored-by: Conrado Gouvea --- src/inputs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/inputs.rs b/src/inputs.rs index 5ef1bb3..f5164c6 100755 --- a/src/inputs.rs +++ b/src/inputs.rs @@ -45,7 +45,7 @@ pub fn request_inputs(input: &mut impl BufRead) -> Result { .parse::() .map_err(|_| Error::InvalidMaxSigners)?; - println!("Secret key (if you don't have one then press enter): "); + println!("Secret key (press enter to randomly generate a fresh one): "); let mut secret_input = String::new(); input.read_line(&mut secret_input).unwrap();