beacon/blsync: ignore beacon syncer reorging errors

This commit is contained in:
MariusVanDerWijden 2026-01-17 15:32:33 +01:00
parent 7b8c410bc9
commit 822c131be2

View file

@ -89,7 +89,7 @@ func (ec *engineClient) updateLoop(headCh <-chan types.ChainHeadEvent) {
} else {
if err.Error() == "beacon syncer reorging" {
log.Debug("Failed ForkchoiceUpdated", "head", event.Block.Hash(), "error", err)
continue // ignore beacon syncer reorging errors, this error can occurr if the blsync is skipping a block
continue // ignore beacon syncer reorging errors, this error can occur if the blsync is skipping a block
}
log.Error("Failed ForkchoiceUpdated", "head", event.Block.Hash(), "error", err)
}