File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ use init4_bin_base::{
12
12
} ;
13
13
use signet_sim:: { BlockBuild , BuiltBlock , SimCache } ;
14
14
use signet_types:: constants:: SignetSystemConstants ;
15
- use tracing:: info;
16
15
use std:: time:: { Duration , Instant } ;
17
16
use tokio:: {
18
17
sync:: {
@@ -21,6 +20,7 @@ use tokio::{
21
20
} ,
22
21
task:: JoinHandle ,
23
22
} ;
23
+ use tracing:: info;
24
24
use trevm:: revm:: {
25
25
context:: BlockEnv ,
26
26
database:: { AlloyDB , WrapDatabaseAsync } ,
Original file line number Diff line number Diff line change
1
+ use crate :: tasks:: block:: sim:: SimResult ;
1
2
use crate :: {
2
3
config:: { HostProvider , ZenithInstance } ,
3
4
quincey:: Quincey ,
@@ -29,7 +30,6 @@ use tokio::{
29
30
sync:: mpsc:: { self } ,
30
31
task:: JoinHandle ,
31
32
} ;
32
- use crate :: tasks:: block:: sim:: SimResult ;
33
33
34
34
macro_rules! spawn_provider_send {
35
35
( $provider: expr, $tx: expr) => {
@@ -433,8 +433,7 @@ impl SubmitTask {
433
433
let span = debug_span ! ( "SubmitTask::retrying_handle_inbound" , retries) ;
434
434
435
435
let inbound_result =
436
- match self . handle_inbound ( retries, block) . instrument ( span. clone ( ) ) . await
437
- {
436
+ match self . handle_inbound ( retries, block) . instrument ( span. clone ( ) ) . await {
438
437
Ok ( control_flow) => control_flow,
439
438
Err ( err) => {
440
439
// Delay until next slot if we get a 403 error
You can’t perform that action at this time.
0 commit comments