Flush password prompt (#1031)

This commit is contained in:
Arkadiy Paronyan 2016-05-02 16:14:27 +02:00 committed by Gav Wood
parent cad08f78b9
commit edc38f16b6
1 changed files with 6 additions and 0 deletions

View File

@ -207,6 +207,10 @@ fn execute_client(conf: Configuration) {
wait_for_exit(panic_handler, rpc_server, webapp_server);
}
fn flush_stdout() {
::std::io::stdout().flush().ok().expect("stdout is flushable; qed");
}
fn execute_account_cli(conf: Configuration) {
use util::keys::store::SecretStore;
use rpassword::read_password;
@ -214,8 +218,10 @@ fn execute_account_cli(conf: Configuration) {
if conf.args.cmd_new {
println!("Please note that password is NOT RECOVERABLE.");
print!("Type password: ");
flush_stdout();
let password = read_password().unwrap();
print!("Repeat password: ");
flush_stdout();
let password_repeat = read_password().unwrap();
if password != password_repeat {
println!("Passwords do not match!");