From f757074f9e3cf0bf57d8dcb7e5f9c8e1219f1b22 Mon Sep 17 00:00:00 2001 From: Gary Rong Date: Tue, 15 Jul 2025 20:05:58 +0800 Subject: [PATCH] miner: print warn log if fails to convert blob sidecar --- miner/worker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miner/worker.go b/miner/worker.go index 71153a8e1c..ee31a65359 100644 --- a/miner/worker.go +++ b/miner/worker.go @@ -433,7 +433,7 @@ func (miner *Miner) commitTransactions(env *environment, plainTxs, blobTxs *tran log.Info("Including blob tx with v0 sidecar, recomputing proofs", "hash", ltx.Hash) if err := sidecar.ToV1(); err != nil { txs.Pop() - log.Info("Failed to recompute cell proofs", "hash", ltx.Hash, "err", err) + log.Warn("Failed to recompute cell proofs", "hash", ltx.Hash, "err", err) continue } }