Skip to content

Commit

Permalink
Make linter happy.
Browse files Browse the repository at this point in the history
  • Loading branch information
wen-coding committed Nov 5, 2024
1 parent 742002b commit ceecee2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion wen-restart/src/heaviest_fork_aggregate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,10 @@ impl HeaviestForkAggregate {

pub(crate) fn print_block_stake_map(&self) {
for ((slot, hash), stake) in self.block_stake_map.iter() {
info!("Heaviest Fork Aggregated Slot: {}, Hash: {}, Stake: {}", slot, hash, stake,);
info!(
"Heaviest Fork Aggregated Slot: {}, Hash: {}, Stake: {}",
slot, hash, stake,
);
}
}
}
Expand Down

0 comments on commit ceecee2

Please sign in to comment.