From 9d719fc88cbc4ebad6ab8333b65424f75d526269 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 21 Jul 2025 10:16:05 +0200 Subject: [PATCH] core: remove check in BlockValidator --- core/block_validator.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/core/block_validator.go b/core/block_validator.go index 3a0635b517..008444fbbc 100644 --- a/core/block_validator.go +++ b/core/block_validator.go @@ -86,13 +86,8 @@ func (v *BlockValidator) ValidateBody(block *types.Block) error { } // Blob transactions may be present after the Cancun fork. - isOsaka := v.config.IsOsaka(block.Number(), block.Time()) var blobs int for i, tx := range block.Transactions() { - if isOsaka && len(tx.BlobHashes()) > params.BlobTxMaxBlobs { - return ErrTooManyBlobs - } - // Count the number of blobs to validate against the header's blobGasUsed blobs += len(tx.BlobHashes())