Skip to content

Commit ff5cb31

Browse files
committed
lint: fmt
1 parent 785172b commit ff5cb31

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

src/tasks/block.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
use crate::{
22
config::{BuilderConfig, WalletlessProvider},
3-
tasks::{bundler::{BundlePoller, Bundle}, oauth::Authenticator, tx_poller::TxPoller},
3+
tasks::{
4+
bundler::{Bundle, BundlePoller},
5+
oauth::Authenticator,
6+
tx_poller::TxPoller,
7+
},
48
};
59
use alloy::{consensus::TxEnvelope, eips::BlockId, genesis::Genesis};
610
use signet_sim::{BlockBuild, BuiltBlock, SimCache};

src/tasks/bundler.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ use crate::tasks::oauth::Authenticator;
44
use oauth2::TokenResponse;
55
use reqwest::Url;
66
use serde::{Deserialize, Serialize};
7+
use signet_bundle::SignetEthBundle;
78
use tokio::sync::mpsc::{UnboundedReceiver, UnboundedSender, unbounded_channel};
89
use tokio::task::JoinHandle;
910
use tokio::time;
1011
use tracing::{Instrument, debug, trace};
11-
use signet_bundle::SignetEthBundle;
1212
/// Holds a bundle from the cache with a unique ID and a Zenith bundle.
1313
#[derive(Debug, Clone, Serialize, Deserialize)]
1414
pub struct Bundle {

src/tasks/submit.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ use crate::{
33
signer::LocalOrAws,
44
utils::extract_signature_components,
55
};
6-
use signet_sim::BuiltBlock;
76
use alloy::{
87
consensus::{SimpleCoder, constants::GWEI_TO_WEI},
98
eips::BlockNumberOrTag,
@@ -18,6 +17,7 @@ use alloy::{
1817
use eyre::{bail, eyre};
1918
use init4_bin_base::deps::metrics::{counter, histogram};
2019
use oauth2::TokenResponse;
20+
use signet_sim::BuiltBlock;
2121
use signet_types::{SignRequest, SignResponse};
2222
use signet_zenith::{
2323
BundleHelper::{self, BlockHeader, FillPermit2, submitCall},

0 commit comments

Comments
 (0)