diff --git a/core/state_transition.go b/core/state_transition.go index de8df47f84..74f6fcc36a 100644 --- a/core/state_transition.go +++ b/core/state_transition.go @@ -123,7 +123,7 @@ func FloorDataGas(rules params.Rules, data []byte) (uint64, error) { tokenCost uint64 ) if rules.IsAmsterdam { - // EIP-7976 changes both how calldata is priced. + // EIP-7976 changes how calldata is priced. // From 10/40 to 64/64 for zero/non-zero bytes. tokens = uint64(len(data)) * params.TxTokenPerNonZeroByte tokenCost = params.TxCostFloorPerToken7976