Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 33aa899

Browse files
committedMay 12, 2025·
lint: fmt
1 parent 6b9f56d commit 33aa899

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed
 

‎bin/builder.rs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
use builder::{
22
config::BuilderConfig,
33
service::serve_builder,
4-
tasks::{
5-
block::Simulator, bundler, metrics::MetricsTask, submit::SubmitTask,
6-
tx_poller,
7-
},
4+
tasks::{block::Simulator, bundler, metrics::MetricsTask, submit::SubmitTask, tx_poller},
85
};
96
use init4_bin_base::{deps::tracing, utils::from_env::FromEnv};
107
use signet_sim::SimCache;
@@ -33,7 +30,8 @@ async fn main() -> eyre::Result<()> {
3330
let metrics = MetricsTask { host_provider };
3431
let (tx_channel, metrics_jh) = metrics.spawn();
3532

36-
let submit = SubmitTask { zenith, quincey, config: config.clone(), outbound_tx_channel: tx_channel };
33+
let submit =
34+
SubmitTask { zenith, quincey, config: config.clone(), outbound_tx_channel: tx_channel };
3735

3836
let tx_poller = tx_poller::TxPoller::new(&config);
3937
let (tx_receiver, tx_poller_jh) = tx_poller.spawn();

‎src/quincey.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ use crate::{signer::LocalOrAws, tasks::oauth::SharedToken};
22
use alloy::signers::Signer;
33
use eyre::bail;
44
use init4_bin_base::deps::tracing::{self, debug, info, instrument, trace};
5+
use oauth2::TokenResponse;
56
use reqwest::Client;
67
use signet_types::{SignRequest, SignResponse};
7-
use oauth2::TokenResponse;
88

99
/// A quincey client for making requests to the Quincey API.
1010
#[derive(Debug, Clone)]

‎src/tasks/submit.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ use alloy::{
1313
sol_types::{SolCall, SolError},
1414
transports::TransportError,
1515
};
16-
use eyre::{ bail, eyre};
16+
use eyre::{bail, eyre};
1717
use init4_bin_base::deps::{
1818
metrics::{counter, histogram},
19-
tracing::{self, Instrument, debug, debug_span, error, info, instrument, warn},
19+
tracing::{self, Instrument, debug, debug_span, error, info, instrument, warn},
2020
};
2121
use signet_sim::BuiltBlock;
2222
use signet_types::{SignRequest, SignResponse};

0 commit comments

Comments
 (0)
Please sign in to comment.