You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: crates/optimism/bin/src/main.rs
+4-5
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,9 @@
3
3
#![cfg(feature = "optimism")]
4
4
5
5
use clap::Parser;
6
-
use reth_node_builder::{engine_tree_config::TreeConfig,EngineNodeLauncher};
6
+
use reth_node_builder::{engine_tree_config::TreeConfig,EngineNodeLauncher,Node};
7
7
use reth_optimism_cli::{chainspec::OpChainSpecParser,Cli};
8
-
use reth_optimism_node::{args::RollupArgs,node::OpAddOns,OpNode};
8
+
use reth_optimism_node::{args::RollupArgs,OpNode};
9
9
use reth_provider::providers::BlockchainProvider2;
10
10
11
11
use tracing as _;
@@ -27,16 +27,15 @@ fn main() {
27
27
tracing::warn!(target:"reth::cli","Experimental engine is default now, and the --engine.experimental flag is deprecated. To enable the legacy functionality, use --engine.legacy.");
28
28
}
29
29
let use_legacy_engine = rollup_args.legacy;
30
-
let sequencer_http_arg = rollup_args.sequencer_http.clone();
0 commit comments