Skip to content

Commit

Permalink
feat: clean up unused imports in taiko CLI and main modules
Browse files Browse the repository at this point in the history
  • Loading branch information
johntaiko committed Dec 24, 2024
1 parent d070d75 commit c41641b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions bin/reth/src/cli/taiko.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use crate::{
version::{LONG_VERSION, SHORT_VERSION},
};
use clap::{value_parser, Parser, Subcommand};
use reth_chainspec::{ChainSpec, EthChainSpec};
use reth_chainspec::EthChainSpec;
use reth_cli::chainspec::ChainSpecParser;
use reth_cli_commands::{
config_cmd, db, dump_genesis, import, init_cmd, init_state,
Expand All @@ -15,9 +15,7 @@ use reth_cli_commands::{
};
use reth_cli_runner::CliRunner;
use reth_db::DatabaseEnv;
use reth_ethereum_cli::chainspec::EthereumChainSpecParser;
use reth_node_builder::{NodeBuilder, WithLaunchContext};
use reth_node_ethereum::{EthExecutorProvider, EthereumNode};
use reth_node_metrics::recorder::install_prometheus_recorder;
use reth_taiko_chainspec::TaikoChainSpec;
use reth_taiko_cli::chainspec::TaikoChainSpecParser;
Expand Down
1 change: 0 additions & 1 deletion bin/reth/src/taiko.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ static ALLOC: reth_cli_util::allocator::Allocator = reth_cli_util::allocator::ne

use clap::{Args, Parser};
use reth::cli::taiko::Cli;
use reth_node_builder::Node;
use reth_node_builder::{
engine_tree_config::{
TreeConfig, DEFAULT_MEMORY_BLOCK_BUFFER_TARGET, DEFAULT_PERSISTENCE_THRESHOLD,
Expand Down

0 comments on commit c41641b

Please sign in to comment.