From e00e15a14cc73d8bf2fb4c95b9225950bbc9c171 Mon Sep 17 00:00:00 2001 From: Marius van der Wijden Date: Tue, 8 Apr 2025 13:22:39 +0200 Subject: [PATCH] miner: skip v1 transactions post-prague --- miner/worker.go | 1 + 1 file changed, 1 insertion(+) diff --git a/miner/worker.go b/miner/worker.go index 3423015247..9a8612775d 100644 --- a/miner/worker.go +++ b/miner/worker.go @@ -391,6 +391,7 @@ func (miner *Miner) commitTransactions(env *environment, plainTxs, blobTxs *tran continue } + // Make sure all transactions after osaka have cell proofs if miner.chainConfig.IsOsaka(env.header.Number, env.header.Time) { if sidecar := tx.BlobTxSidecar(); sidecar != nil { if len(sidecar.Blobs) != len(sidecar.Proofs)*kzg4844.CellProofsPerBlob {