mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
fix(op): filter out receipts for dup txns (#8400)
This commit is contained in:
@ -13,6 +13,7 @@ workspace = true
|
||||
[dependencies]
|
||||
# reth
|
||||
reth-primitives.workspace = true
|
||||
reth-optimism-primitives.workspace = true
|
||||
reth-consensus.workspace=true
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
@ -1,12 +1,12 @@
|
||||
//! Collection of methods for block validation.
|
||||
|
||||
use reth_consensus::ConsensusError;
|
||||
use reth_optimism_primitives::bedrock_import::is_dup_tx;
|
||||
use reth_primitives::{
|
||||
constants::{
|
||||
eip4844::{DATA_GAS_PER_BLOB, MAX_DATA_GAS_PER_BLOCK},
|
||||
MAXIMUM_EXTRA_DATA_SIZE,
|
||||
},
|
||||
op_mainnet::is_dup_tx,
|
||||
ChainSpec, GotExpected, Hardfork, Header, SealedBlock, SealedHeader,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user