Skip to content

Commit

Permalink
fix(net): lints
Browse files Browse the repository at this point in the history
  • Loading branch information
refcell committed Aug 30, 2024
1 parent 706f230 commit 205c130
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions crates/net/src/driver.rs
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
//! Driver for network services.
use crate::{
builder::NetworkDriverBuilder, discovery::driver::DiscoveryDriver,
gossip::driver::GossipDriver, types::envelope::ExecutionPayloadEnvelope,
builder::NetworkDriverBuilder,
discovery::driver::DiscoveryDriver,
gossip::driver::GossipDriver,
types::{envelope::ExecutionPayloadEnvelope, peer::Peer},
};
use alloy::primitives::Address;
use eyre::Result;
use tracing::error;
use std::sync::mpsc::Receiver;
use tokio::{select, sync::watch};
use crate::types::peer::Peer;
use tracing::error;

/// NetworkDriver
///
Expand Down

0 comments on commit 205c130

Please sign in to comment.