From 2e4885315adb40e2ad335892b3d6bbf61eeb9f83 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 9 Jun 2025 16:36:37 +0200 Subject: [PATCH] consensus/misc/eip4844: update comment --- consensus/misc/eip4844/eip4844.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/misc/eip4844/eip4844.go b/consensus/misc/eip4844/eip4844.go index 2052680bb5..dc18c2f748 100644 --- a/consensus/misc/eip4844/eip4844.go +++ b/consensus/misc/eip4844/eip4844.go @@ -195,7 +195,7 @@ func fakeExponential(factor, numerator, denominator *big.Int) *big.Int { return output.Div(output, denominator) } -// calcBlobPrice calculates the blob price based for a block. +// calcBlobPrice calculates the blob price for a block. func calcBlobPrice(config *params.ChainConfig, header *types.Header) *big.Int { blobBaseFee := CalcBlobFee(config, header) return new(big.Int).Mul(blobBaseFee, big.NewInt(params.BlobTxBlobGasPerBlob))