Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pompon0 committed Sep 2, 2024
1 parent 554b13e commit 2d604f8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion node/actors/network/src/gossip/attestation/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,11 @@ impl State {
}
// Verify signature only after checking all the other preconditions.
vote.verify().context("verify")?;
tracing::info!("collected vote with weight {weight} from {:?}", vote.key);
tracing::info!(
"collected vote for {:?} with weight {weight} from {:?}",
vote.msg.number,
vote.key
);
self.votes.insert(vote.key.clone(), vote);
self.total_weight += weight;
Ok(())
Expand Down

0 comments on commit 2d604f8

Please sign in to comment.