We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93be9e4 commit 9d719fcCopy full SHA for 9d719fc
core/block_validator.go
@@ -86,13 +86,8 @@ func (v *BlockValidator) ValidateBody(block *types.Block) error {
86
}
87
88
// Blob transactions may be present after the Cancun fork.
89
- isOsaka := v.config.IsOsaka(block.Number(), block.Time())
90
var blobs int
91
for i, tx := range block.Transactions() {
92
- if isOsaka && len(tx.BlobHashes()) > params.BlobTxMaxBlobs {
93
- return ErrTooManyBlobs
94
- }
95
-
96
// Count the number of blobs to validate against the header's blobGasUsed
97
blobs += len(tx.BlobHashes())
98
0 commit comments