This repository was archived by the owner on Nov 25, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ use alphanet_node::{chainspec::AlphanetChainSpecParser, node::AlphaNetNode};
30
30
use alphanet_wallet:: { AlphaNetWallet , AlphaNetWalletApiServer } ;
31
31
use async_trait:: async_trait;
32
32
use clap:: Parser ;
33
+ use eyre:: Context ;
33
34
use futures:: StreamExt ;
34
35
use jsonrpsee:: {
35
36
core:: RpcResult ,
@@ -43,13 +44,7 @@ use reth_optimism_node::{args::RollupArgs, node::OptimismAddOns};
43
44
use reth_optimism_rpc:: sequencer:: SequencerClient ;
44
45
use reth_provider:: providers:: BlockchainProvider2 ;
45
46
use serde:: { Deserialize , Serialize } ;
46
- use std:: {
47
- future:: Future ,
48
- pin:: Pin ,
49
- task:: { Poll } ,
50
- } ;
51
- use std:: sync:: mpsc;
52
- use eyre:: Context ;
47
+ use std:: { future:: Future , pin:: Pin , sync:: mpsc, task:: Poll } ;
53
48
use tokio:: sync:: { mpsc, oneshot} ;
54
49
use tokio_stream:: wrappers:: UnboundedReceiverStream ;
55
50
use tracing:: { info, warn} ;
@@ -96,7 +91,8 @@ fn main() {
96
91
. collect :: < Result < _ , _ > > ( )
97
92
. wrap_err ( "No valid EXP0001 delegations specified" ) ?;
98
93
99
- ctx. modules . merge_configured ( WallTimeRpcExt { to_exex : rpc_tx } . into_rpc ( ) ) ?;
94
+ ctx. modules
95
+ . merge_configured ( WallTimeRpcExt { to_exex : rpc_tx } . into_rpc ( ) ) ?;
100
96
101
97
ctx. modules . merge_configured (
102
98
AlphaNetWallet :: new (
You can’t perform that action at this time.
0 commit comments