Flush password prompt

This commit is contained in:
arkpar 2016-05-02 15:29:50 +02:00
parent c34e3535e0
commit 0595caf50c
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!");