Skip to content

Commit

Permalink
Improve vanity message
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapk00 committed Jun 26, 2019
1 parent d63ac70 commit 5f7d3fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/paper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ pub fn generate_vanity_wallet(is_testnet: bool, num_threads: u32, prefix: String
processed = processed + 1000;
let timeelapsed = now.elapsed().unwrap().as_secs() + 1; // Add one second to prevent any divide by zero problems.

print!("Checking addresses at {}/sec \r", (processed / timeelapsed));
print!("Checking addresses at {}/sec on {} CPU threads\r", (processed / timeelapsed), num_threads);
io::stdout().flush().ok().unwrap();
} else {
// Found a solution
Expand Down

0 comments on commit 5f7d3fe

Please sign in to comment.