Skip to content

Commit f757074

Browse files
committed
miner: print warn log if fails to convert blob sidecar
1 parent 6108ff6 commit f757074

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

miner/worker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ func (miner *Miner) commitTransactions(env *environment, plainTxs, blobTxs *tran
433433
log.Info("Including blob tx with v0 sidecar, recomputing proofs", "hash", ltx.Hash)
434434
if err := sidecar.ToV1(); err != nil {
435435
txs.Pop()
436-
log.Info("Failed to recompute cell proofs", "hash", ltx.Hash, "err", err)
436+
log.Warn("Failed to recompute cell proofs", "hash", ltx.Hash, "err", err)
437437
continue
438438
}
439439
}

0 commit comments

Comments
 (0)