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:
@ -68,7 +68,7 @@ reth-engine-util.workspace = true
|
||||
reth-prune.workspace = true
|
||||
|
||||
# crypto
|
||||
alloy-eips.workspace = true
|
||||
alloy-eips = { workspace = true, features = ["kzg"] }
|
||||
alloy-rlp.workspace = true
|
||||
alloy-rpc-types = { workspace = true, features = ["engine"] }
|
||||
alloy-consensus.workspace = true
|
||||
|
||||
@ -1,6 +1,9 @@
|
||||
//! Command for debugging block building.
|
||||
use alloy_consensus::TxEip4844;
|
||||
use alloy_eips::{eip2718::Encodable2718, eip4844::BlobTransactionSidecar};
|
||||
use alloy_eips::{
|
||||
eip2718::Encodable2718,
|
||||
eip4844::{env_settings::EnvKzgSettings, BlobTransactionSidecar},
|
||||
};
|
||||
use alloy_primitives::{Address, Bytes, B256, U256};
|
||||
use alloy_rlp::Decodable;
|
||||
use alloy_rpc_types::engine::{BlobsBundleV1, PayloadAttributes};
|
||||
@ -33,11 +36,7 @@ use reth_provider::{
|
||||
BlockHashReader, BlockReader, BlockWriter, ChainSpecProvider, ProviderFactory,
|
||||
StageCheckpointReader, StateProviderFactory,
|
||||
};
|
||||
use reth_revm::{
|
||||
cached::CachedReads,
|
||||
database::StateProviderDatabase,
|
||||
primitives::{EnvKzgSettings, KzgSettings},
|
||||
};
|
||||
use reth_revm::{cached::CachedReads, database::StateProviderDatabase, primitives::KzgSettings};
|
||||
use reth_stages::StageId;
|
||||
use reth_transaction_pool::{
|
||||
blobstore::InMemoryBlobStore, BlobStore, EthPooledTransaction, PoolConfig, TransactionOrigin,
|
||||
|
||||
Reference in New Issue
Block a user