From 6108ff6be9b4187c40d7535e6f38082583e81d44 Mon Sep 17 00:00:00 2001 From: Gary Rong Date: Tue, 15 Jul 2025 09:45:35 +0800 Subject: [PATCH] miner: fix txs.Shift --- miner/worker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miner/worker.go b/miner/worker.go index fa7057efe9..71153a8e1c 100644 --- a/miner/worker.go +++ b/miner/worker.go @@ -432,7 +432,7 @@ func (miner *Miner) commitTransactions(env *environment, plainTxs, blobTxs *tran if sidecar.Version == types.BlobSidecarVersion0 { log.Info("Including blob tx with v0 sidecar, recomputing proofs", "hash", ltx.Hash) if err := sidecar.ToV1(); err != nil { - txs.Shift() + txs.Pop() log.Info("Failed to recompute cell proofs", "hash", ltx.Hash, "err", err) continue }