miner: print warn log if fails to convert blob sidecar

This commit is contained in:
Gary Rong 2025-07-15 20:05:58 +08:00
parent 6108ff6be9
commit f757074f9e

View file

@ -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) log.Info("Including blob tx with v0 sidecar, recomputing proofs", "hash", ltx.Hash)
if err := sidecar.ToV1(); err != nil { if err := sidecar.ToV1(); err != nil {
txs.Pop() 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 continue
} }
} }