consensus/misc/eip4844: update comment

This commit is contained in:
Felix Lange 2025-06-09 16:36:37 +02:00
parent 023d27f050
commit 2e4885315a

View file

@ -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))