From 2d604f8932a5f71edd01aaee6d1a8cfdc152a2c3 Mon Sep 17 00:00:00 2001 From: Grzegorz Prusak Date: Mon, 2 Sep 2024 14:14:07 +0200 Subject: [PATCH] minor changes --- node/actors/network/src/gossip/attestation/mod.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/node/actors/network/src/gossip/attestation/mod.rs b/node/actors/network/src/gossip/attestation/mod.rs index ede861af..3db48085 100644 --- a/node/actors/network/src/gossip/attestation/mod.rs +++ b/node/actors/network/src/gossip/attestation/mod.rs @@ -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(())