mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: reduce revm scope in txpool (#13274)
This commit is contained in:
@ -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
|
||||
|
||||
@ -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};
|
||||
|
||||
Reference in New Issue
Block a user