mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 14:16:44 +00:00
miner: print warn log if fails to convert blob sidecar
This commit is contained in:
parent
6108ff6be9
commit
f757074f9e
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue