rpc: rm useless alloy_rpc_types reexport (#11098)

Co-authored-by: Emilia Hane <elsaemiliaevahane@gmail.com>
This commit is contained in:
Thomas Coratger
2024-09-22 16:29:35 +02:00
committed by GitHub
parent 63dfa9a4dc
commit 159bf2cf16
70 changed files with 133 additions and 115 deletions

View File

@ -9,5 +9,6 @@ license.workspace = true
reth.workspace = true
reth-node-ethereum.workspace = true
reth-rpc-types.workspace = true
alloy-rpc-types.workspace = true
clap = { workspace = true, features = ["derive"] }
futures-util.workspace = true

View File

@ -10,6 +10,7 @@
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
use alloy_rpc_types::state::EvmOverrides;
use clap::Parser;
use futures_util::StreamExt;
use reth::{
@ -26,7 +27,6 @@ use reth::{
transaction_pool::TransactionPool,
};
use reth_node_ethereum::node::EthereumNode;
use reth_rpc_types::state::EvmOverrides;
fn main() {
Cli::<DefaultChainSpecParser, RethCliTxpoolExt>::parse()