core, params: add limit for max blobs in blob transaction#32246
Merged
fjl merged 4 commits intoethereum:masterfrom Jul 21, 2025
Merged
core, params: add limit for max blobs in blob transaction#32246fjl merged 4 commits intoethereum:masterfrom
fjl merged 4 commits intoethereum:masterfrom
Conversation
| } | ||
|
|
||
| // Blob transactions may be present after the Cancun fork. | ||
| isOsaka := v.config.IsOsaka(block.Number(), block.Time()) |
Member
There was a problem hiding this comment.
The invalid blob txs (with more than 6 blobs) will be caught in the state_transition, no matter for block processing (from network), or the block production. And this rule is also applied for RPC calls there.
The validation here is duplicated?
howjmay
pushed a commit
to iotaledger/go-ethereum
that referenced
this pull request
Aug 27, 2025
…2246) [EIP-7594](https://eips.ethereum.org/EIPS/eip-7594) defines a limit of max 6 blobs per transaction. We need to enforce this limit during block processing. > Additionally, a limit of 6 blobs per transaction is introduced. Clients MUST enforce this limit when validating blob transactions at submission time, when received from the network, and during block production and processing.
This was referenced Sep 9, 2025
gballet
pushed a commit
to gballet/go-ethereum
that referenced
this pull request
Sep 11, 2025
…2246) [EIP-7594](https://eips.ethereum.org/EIPS/eip-7594) defines a limit of max 6 blobs per transaction. We need to enforce this limit during block processing. > Additionally, a limit of 6 blobs per transaction is introduced. Clients MUST enforce this limit when validating blob transactions at submission time, when received from the network, and during block production and processing.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
EIP-7594 defines a limit of max 6 blobs per transaction. We need to enforce this limit during block processing.