Skip to content

Commit 5e7f951

Browse files
committed
format
1 parent 18391e9 commit 5e7f951

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

wallet/src/types.rs

+5-3
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414

1515
extern crate colored;
1616

17+
use colored::*;
1718
use std::fs::{self, File};
1819
use std::io;
1920
use std::io::{Read, Write};
2021
use std::path::Path;
2122
use std::path::MAIN_SEPARATOR;
22-
use colored::*;
2323

2424
use crate::blake2;
2525
use rand::{thread_rng, Rng};
@@ -236,9 +236,11 @@ impl WalletSeed {
236236
println!();
237237
println!("Please back-up these words in a non-digital format.");
238238

239-
240239
if wait_for_user {
241-
println!("{}", "Press ENTER when you have done so".bright_green().bold());
240+
println!(
241+
"{}",
242+
"Press ENTER when you have done so".bright_green().bold()
243+
);
242244
let mut line = String::new();
243245
io::stdout().flush().unwrap();
244246
io::stdin().read_line(&mut line).unwrap();

0 commit comments

Comments
 (0)