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 ab07d81 commit 87e7b6eCopy full SHA for 87e7b6e
src/mine.rs
@@ -44,12 +44,13 @@ impl Miner {
44
.await;
45
last_hash_at = proof.last_hash_at;
46
println!(
47
- "\nStake: {} ORE \n balance change:{} ORE\n Multiplier: {:12}x",
+ "\nStake: {} ORE\n Change: {} ORE\n Multiplier: {:12}x",
48
amount_u64_to_string(proof.balance),
49
amount_u64_to_string(proof.balance.saturating_sub(last_balance)),
50
calculate_multiplier(proof.balance, config.top_balance)
51
);
52
last_balance = proof.balance;
53
+
54
// Calculate cutoff time
55
let cutoff_time = self.get_cutoff(proof, args.buffer_time).await;
56
0 commit comments