From 4eff41b125829a27d5a3b2afbbc6672baa225fff Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Thu, 23 Nov 2023 16:53:11 +0100 Subject: [PATCH] chore: remove unused imports (#5550) --- crates/consensus/beacon/src/engine/sync.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/crates/consensus/beacon/src/engine/sync.rs b/crates/consensus/beacon/src/engine/sync.rs index a49391b5ec..10c18e7420 100644 --- a/crates/consensus/beacon/src/engine/sync.rs +++ b/crates/consensus/beacon/src/engine/sync.rs @@ -394,10 +394,7 @@ mod tests { use super::*; use assert_matches::assert_matches; use futures::poll; - use reth_db::{ - mdbx::DatabaseEnv, - test_utils::{create_test_rw_db, TempDatabase}, - }; + use reth_db::{mdbx::DatabaseEnv, test_utils::TempDatabase}; use reth_interfaces::{p2p::either::EitherDownloader, test_utils::TestFullBlockClient}; use reth_primitives::{ constants::ETHEREUM_BLOCK_GAS_LIMIT, stage::StageCheckpoint, BlockBody, ChainSpec, @@ -405,7 +402,7 @@ mod tests { }; use reth_provider::{ test_utils::{create_test_provider_factory_with_chain_spec, TestExecutorFactory}, - BundleStateWithReceipts, ProviderFactory, + BundleStateWithReceipts, }; use reth_stages::{test_utils::TestStages, ExecOutput, StageError}; use reth_tasks::TokioTaskExecutor;