We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e40e8a commit ab07d81Copy full SHA for ab07d81
src/mine.rs
@@ -141,9 +141,8 @@ impl Miner {
141
if timer.elapsed().as_secs().ge(&cutoff_time) {
142
if i.id == 0 {
143
progress_bar.set_message(format!(
144
- "Mining... ({} / {} difficulty)",
+ "Mining... ({} difficulty)",
145
global_best_difficulty,
146
- min_difficulty,
147
));
148
}
149
if global_best_difficulty.ge(&min_difficulty) {
@@ -152,9 +151,8 @@ impl Miner {
152
151
153
} else if i.id == 0 {
154
155
- "Mining... ({} / {} difficulty, {} sec remaining)",
+ "Mining... ({} difficulty, {} sec remaining)",
156
157
158
cutoff_time.saturating_sub(timer.elapsed().as_secs()),
159
160
0 commit comments