feat: separate node-builder crate (#6302)

This commit is contained in:
Dan Cline
2024-01-31 13:03:03 -05:00
committed by GitHub
parent 34cda3a99f
commit 1223895466
45 changed files with 191 additions and 100 deletions

View File

@ -21,7 +21,7 @@ reth-provider.workspace = true
reth-stages.workspace = true
reth-interfaces.workspace = true
reth-revm.workspace = true
reth-node-builder.workspace = true
reth-node-ethereum.workspace = true
alloy-rlp.workspace = true
tokio = "1.28.1"

View File

@ -6,7 +6,7 @@ use crate::{
};
use alloy_rlp::Decodable;
use reth_db::test_utils::create_test_rw_db;
use reth_node_builder::EthEvmConfig;
use reth_node_ethereum::EthEvmConfig;
use reth_primitives::{BlockBody, SealedBlock};
use reth_provider::{BlockWriter, HashingWriter, ProviderFactory};
use reth_stages::{stages::ExecutionStage, ExecInput, Stage};