File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -144,14 +144,14 @@ impl SequencerNodeArgs {
144144 let config = self . config ( ) ?;
145145
146146 if config. forking . is_some ( ) {
147- let node = Node :: build ( config) . context ( "failed to build node" ) ?;
147+ let node = Node :: build_forked ( config) . await . context ( "failed to build forked node" ) ?;
148148
149149 if !self . silent {
150150 utils:: print_intro ( self , & node. backend ( ) . chain_spec ) ;
151151 }
152152
153153 // Launch the node
154- let handle = node. launch ( ) . await . context ( "failed to launch node" ) ?;
154+ let handle = node. launch ( ) . await . context ( "failed to launch forked node" ) ?;
155155
156156 // Wait until an OS signal (ie SIGINT, SIGTERM) is received or the node is shutdown.
157157 tokio:: select! {
@@ -163,7 +163,7 @@ impl SequencerNodeArgs {
163163 _ = handle. stopped( ) => { }
164164 }
165165 } else {
166- let node = Node :: build_forked ( config) . await . context ( "failed to build node" ) ?;
166+ let node = Node :: build ( config) . context ( "failed to build node" ) ?;
167167
168168 if !self . silent {
169169 utils:: print_intro ( self , & node. backend ( ) . chain_spec ) ;
You can’t perform that action at this time.
0 commit comments