Skip to content

Commit 87e7b6e

Browse files
authored
Update mine.rs
1 parent ab07d81 commit 87e7b6e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/mine.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,13 @@ impl Miner {
4444
.await;
4545
last_hash_at = proof.last_hash_at;
4646
println!(
47-
"\nStake: {} ORE \n balance change:{} ORE\n Multiplier: {:12}x",
47+
"\nStake: {} ORE\n Change: {} ORE\n Multiplier: {:12}x",
4848
amount_u64_to_string(proof.balance),
4949
amount_u64_to_string(proof.balance.saturating_sub(last_balance)),
5050
calculate_multiplier(proof.balance, config.top_balance)
5151
);
5252
last_balance = proof.balance;
53+
5354
// Calculate cutoff time
5455
let cutoff_time = self.get_cutoff(proof, args.buffer_time).await;
5556

0 commit comments

Comments
 (0)