diff --git a/core/txpool/blobpool/slotter.go b/core/txpool/blobpool/slotter.go index 2e2b577e26..e05bf6a3db 100644 --- a/core/txpool/blobpool/slotter.go +++ b/core/txpool/blobpool/slotter.go @@ -51,7 +51,7 @@ func newSlotterEIP7594(maxBlobsPerTransaction int) func() (uint32, bool) { return func() (size uint32, done bool) { slotsize += blobSize + txBlobOverhead - finished := slotsize > uint32(maxBlobsPerTransaction)*blobSize+txMaxSize + finished := slotsize > uint32(maxBlobsPerTransaction)*(blobSize+txBlobOverhead)+txMaxSize return slotsize, finished }