primitives: rm alloy_genesis reexport (#11181)

This commit is contained in:
Thomas Coratger
2024-09-25 01:15:19 +02:00
committed by GitHub
parent c09bb04950
commit 3bd966c594
14 changed files with 24 additions and 14 deletions

View File

@ -17,3 +17,5 @@ futures-util.workspace = true
eyre.workspace = true
tokio.workspace = true
serde_json.workspace = true
alloy-genesis.workspace = true

View File

@ -5,6 +5,7 @@
use std::sync::Arc;
use alloy_genesis::Genesis;
use futures_util::StreamExt;
use reth::{
builder::{NodeBuilder, NodeHandle},
@ -15,7 +16,7 @@ use reth::{
use reth_chainspec::ChainSpec;
use reth_node_core::{args::RpcServerArgs, node_config::NodeConfig};
use reth_node_ethereum::EthereumNode;
use reth_primitives::{b256, hex, Genesis};
use reth_primitives::{b256, hex};
#[tokio::main]
async fn main() -> eyre::Result<()> {