Remove temporary BIP32 note (#2115)

* Remove temporary BIP32 note

* Rustfmt
This commit is contained in:
Quentin Le Sceller 2018-12-11 05:41:54 -05:00 committed by Yeastplume
parent e24e087fd1
commit ec9cdf0ecd

View file

@ -47,17 +47,7 @@ pub enum ParseError {
pub fn prompt_password(password: &Option<String>) -> String { pub fn prompt_password(password: &Option<String>) -> String {
match password { match password {
None => { None => rpassword::prompt_password_stdout("Password: ").unwrap(),
println!("Temporary note:");
println!(
"If this is your first time running your wallet since BIP32 (word lists) \
were implemented, your seed will be converted to \
the new format. Please ensure the provided password is correct."
);
println!("If this goes wrong, your old 'wallet.seed' file has been saved as 'wallet.seed.bak' \
Rename this file to back to `wallet.seed` and try again");
rpassword::prompt_password_stdout("Password: ").unwrap()
}
Some(p) => p.to_owned(), Some(p) => p.to_owned(),
} }
} }