Update secret key input text

Co-authored-by: Conrado Gouvea <conrado@zfnd.org>
This commit is contained in:
natalie 2023-06-05 19:26:46 +01:00 committed by GitHub
parent 2bba8bfa15
commit 28359ee3e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ pub fn request_inputs(input: &mut impl BufRead) -> Result<Config, Error> {
.parse::<u16>()
.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();