chore: use alloy-genesis imports for Genesis (#8973)

This commit is contained in:
Dan Cline
2024-06-19 19:14:25 -04:00
committed by GitHub
parent bf9cac7571
commit 8b6ca877d6
24 changed files with 52 additions and 21 deletions

View File

@ -57,6 +57,7 @@ reth-revm = { workspace = true, features = ["test-utils"] }
reth-e2e-test-utils.workspace = true
tokio.workspace = true
alloy-primitives.workspace = true
alloy-genesis.workspace = true
[features]
optimism = [

View File

@ -1,9 +1,10 @@
use alloy_genesis::Genesis;
use reth::{rpc::types::engine::PayloadAttributes, tasks::TaskManager};
use reth_chainspec::{ChainSpecBuilder, BASE_MAINNET};
use reth_e2e_test_utils::{transaction::TransactionTestContext, wallet::Wallet, NodeHelperType};
use reth_node_optimism::{OptimismBuiltPayload, OptimismNode, OptimismPayloadBuilderAttributes};
use reth_payload_builder::EthPayloadBuilderAttributes;
use reth_primitives::{Address, Genesis, B256};
use reth_primitives::{Address, B256};
use std::sync::Arc;
use tokio::sync::Mutex;