Skip to content

Commit 67f5974

Browse files
committed
Fix lint
1 parent e287ac8 commit 67f5974

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/flashblocks/outbound.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use futures::{SinkExt, StreamExt};
33
use std::{net::SocketAddr, sync::Arc};
44
use tokio::{
55
net::TcpListener,
6-
sync::{mpsc, Mutex},
6+
sync::{Mutex, mpsc},
77
};
88
use tokio_tungstenite::{accept_async, tungstenite::Message};
99
use tracing::{debug, error, info};

src/flashblocks/primitives.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use alloy_primitives::{Address, Bloom, Bytes, B256, U256};
1+
use alloy_primitives::{Address, B256, Bloom, Bytes, U256};
22
use alloy_rpc_types_engine::PayloadId;
33
use alloy_rpc_types_eth::Withdrawal;
44
use serde::{Deserialize, Serialize};

src/flashblocks/service.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ use op_alloy_rpc_types_engine::OpExecutionPayloadEnvelopeV3;
1010
use serde::{Deserialize, Serialize};
1111
use std::sync::Arc;
1212
use thiserror::Error;
13-
use tokio::sync::mpsc;
1413
use tokio::sync::RwLock;
14+
use tokio::sync::mpsc;
1515
use tracing::error;
1616
#[derive(Debug, Error)]
1717
pub enum FlashblocksError {

0 commit comments

Comments
 (0)