From 822c131be2ca8cb8f39b7241548e34bdca088f3a Mon Sep 17 00:00:00 2001 From: MariusVanDerWijden Date: Sat, 17 Jan 2026 15:32:33 +0100 Subject: [PATCH] beacon/blsync: ignore beacon syncer reorging errors --- beacon/blsync/engineclient.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon/blsync/engineclient.go b/beacon/blsync/engineclient.go index 7d943f770e..6cac2bc5a8 100644 --- a/beacon/blsync/engineclient.go +++ b/beacon/blsync/engineclient.go @@ -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) }