chore: reduce revm scope in txpool (#13274)

This commit is contained in:
Matthias Seitz
2024-12-11 08:35:11 +01:00
committed by GitHub
parent 9be5a78146
commit b424ad36dc
8 changed files with 22 additions and 22 deletions

View File

@ -61,7 +61,7 @@ reth-transaction-pool.workspace = true
## ethereum
alloy-primitives.workspace = true
alloy-rpc-types = { workspace = true, features = ["engine"] }
revm-primitives.workspace = true
alloy-eips = { workspace = true, features = ["kzg"] }
## async
futures.workspace = true

View File

@ -9,6 +9,7 @@ use crate::{
rpc::{RethRpcAddOns, RethRpcServerHandles, RpcContext},
DefaultNodeLauncher, LaunchNode, Node, NodeHandle,
};
use alloy_eips::eip4844::env_settings::EnvKzgSettings;
use futures::Future;
use reth_blockchain_tree::externals::NodeTypesForTree;
use reth_chainspec::{EthChainSpec, EthereumHardforks, Hardforks};
@ -38,7 +39,6 @@ use reth_provider::{
};
use reth_tasks::TaskExecutor;
use reth_transaction_pool::{PoolConfig, PoolTransaction, TransactionPool};
use revm_primitives::EnvKzgSettings;
use secp256k1::SecretKey;
use std::sync::Arc;
use tracing::{info, trace, warn};