From 1a5f399e301baf795d7d4c38d9a53ea5d7940a1b Mon Sep 17 00:00:00 2001 From: maskpp Date: Mon, 14 Jul 2025 22:06:57 +0800 Subject: [PATCH] miner: set sidecar version when recomputing proofs (#32199) - If the block number is `osaka` fork and needs to recompute some `blob proofs` to `cell proofs`, here also needs to set version to `1`. --- miner/worker.go | 1 + 1 file changed, 1 insertion(+) diff --git a/miner/worker.go b/miner/worker.go index 799107f3bf..21e73058ce 100644 --- a/miner/worker.go +++ b/miner/worker.go @@ -440,6 +440,7 @@ func (miner *Miner) commitTransactions(env *environment, plainTxs, blobTxs *tran } sidecar.Proofs = append(sidecar.Proofs, cellProofs...) } + sidecar.Version = 1 } } }