Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: instrument code with tracing spans #178

Merged
merged 7 commits into from
Aug 8, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fmt
  • Loading branch information
itegulov committed Aug 6, 2024
commit 75189d84bbb922a528660e7545f69abd2f69510d
2 changes: 1 addition & 1 deletion node/actors/network/src/gossip/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
//! eclipse attack. Dynamic connections are supposed to improve the properties of the gossip
//! network graph (minimize its diameter, increase connectedness).
use self::batch_votes::BatchVotesWatch;
use crate::gossip::batch_votes::BatchVotes;
pub use self::{
attestation_status::{AttestationStatus, AttestationStatusReceiver, AttestationStatusWatch},
batch_votes::BatchVotesPublisher,
};
use crate::gossip::batch_votes::BatchVotes;
use crate::{gossip::ValidatorAddrsWatch, io, pool::PoolWatch, Config, MeteredStreamStats};
use fetch::RequestItem;
use std::sync::{atomic::AtomicUsize, Arc};
Expand Down
Loading