Commit 5e7f951 1 parent 18391e9 commit 5e7f951 Copy full SHA for 5e7f951
File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 14
14
15
15
extern crate colored;
16
16
17
+ use colored:: * ;
17
18
use std:: fs:: { self , File } ;
18
19
use std:: io;
19
20
use std:: io:: { Read , Write } ;
20
21
use std:: path:: Path ;
21
22
use std:: path:: MAIN_SEPARATOR ;
22
- use colored:: * ;
23
23
24
24
use crate :: blake2;
25
25
use rand:: { thread_rng, Rng } ;
@@ -236,9 +236,11 @@ impl WalletSeed {
236
236
println ! ( ) ;
237
237
println ! ( "Please back-up these words in a non-digital format." ) ;
238
238
239
-
240
239
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
+ ) ;
242
244
let mut line = String :: new ( ) ;
243
245
io:: stdout ( ) . flush ( ) . unwrap ( ) ;
244
246
io:: stdin ( ) . read_line ( & mut line) . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments