From 6238effeff1ef0f20f4b57188d6c021d7393a6e8 Mon Sep 17 00:00:00 2001 From: cui Date: Mon, 11 Aug 2025 18:05:06 +0800 Subject: [PATCH] miner: remove todo comment (#32389) see https://github.com/ethereum/go-ethereum/pull/32372#discussion_r2265885182 --- miner/worker.go | 1 - 1 file changed, 1 deletion(-) diff --git a/miner/worker.go b/miner/worker.go index ee31a65359..5405fb24b9 100644 --- a/miner/worker.go +++ b/miner/worker.go @@ -543,7 +543,6 @@ func totalFees(block *types.Block, receipts []*types.Receipt) *big.Int { for i, tx := range block.Transactions() { minerFee, _ := tx.EffectiveGasTip(block.BaseFee()) feesWei.Add(feesWei, new(big.Int).Mul(new(big.Int).SetUint64(receipts[i].GasUsed), minerFee)) - // TODO (MariusVanDerWijden) add blob fees } return feesWei }