diff --git a/miner/worker.go b/miner/worker.go index 0e0dcf0c8d..6b714364d6 100644 --- a/miner/worker.go +++ b/miner/worker.go @@ -305,7 +305,7 @@ func (miner *Miner) commitTransaction(env *environment, tx *types.Transaction) e } env.txs = append(env.txs, tx) env.receipts = append(env.receipts, receipt) - env.size += tx.Size() + env.size += tx.WithoutBlobTxSidecar().Size() env.tcount++ return nil }