Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
shekhirin committed Feb 7, 2024
1 parent 0b264e4 commit b68288c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
9 changes: 2 additions & 7 deletions crates/node-core/src/node_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,8 @@ use crate::{
};
use metrics_exporter_prometheus::PrometheusHandle;
use once_cell::sync::Lazy;
use reth_auto_seal_consensus::{AutoSealBuilder, AutoSealConsensus, MiningMode};
use reth_beacon_consensus::{
hooks::{EngineHooks, PruneHook, SnapshotHook},
BeaconConsensus, BeaconConsensusEngine, BeaconConsensusEngineError,
MIN_BLOCKS_FOR_PIPELINE_RUN,
};
use reth_auto_seal_consensus::{AutoSealConsensus, MiningMode};
use reth_beacon_consensus::BeaconConsensus;
use reth_blockchain_tree::{
config::BlockchainTreeConfig, externals::TreeExternals, BlockchainTree,
};
Expand Down Expand Up @@ -53,7 +49,6 @@ use reth_provider::{
ProviderFactory, StageCheckpointReader,
};
use reth_revm::EvmProcessorFactory;
use reth_rpc_engine_api::EngineApi;
use reth_snapshot::Snapshotter;
use reth_stages::{
prelude::*,
Expand Down
2 changes: 1 addition & 1 deletion testing/ef-tests/src/cases/blockchain_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use alloy_rlp::Decodable;
use reth_db::test_utils::{create_test_rw_db, create_test_snapshots_dir};
use reth_node_ethereum::EthEvmConfig;
use reth_primitives::{BlockBody, SealedBlock, SnapshotSegment};
use reth_provider::{providers::SnapshotWriter, BlockWriter, HashingWriter, ProviderFactory};
use reth_provider::{providers::SnapshotWriter, HashingWriter, ProviderFactory};
use reth_stages::{stages::ExecutionStage, ExecInput, Stage};
use std::{collections::BTreeMap, fs, path::Path, sync::Arc};

Expand Down

0 comments on commit b68288c

Please sign in to comment.