From 023d27f0505b37067cf29544a3e0e53f01c41586 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 9 Jun 2025 16:16:17 +0200 Subject: [PATCH] consensus/misc/eip4844: update comment --- consensus/misc/eip4844/eip4844.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/consensus/misc/eip4844/eip4844.go b/consensus/misc/eip4844/eip4844.go index 7c08bb0b12..2052680bb5 100644 --- a/consensus/misc/eip4844/eip4844.go +++ b/consensus/misc/eip4844/eip4844.go @@ -82,7 +82,8 @@ func CalcExcessBlobGas(config *params.ChainConfig, parent *types.Header, headTim if !config.IsOsaka(config.LondonBlock, headTimestamp) { return excessBlobGas - targetGas } - // EIP-7918. + + // EIP-7918 (post-Osaka). var ( reservePrice = new(big.Int).Mul(parent.BaseFee, big.NewInt(params.BlobBaseCost)) blobPrice = calcBlobPrice(config, parent)