From deaa55529ed059e3c660b5a29dade7bb527d8a45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Tue, 5 Oct 2021 14:29:31 +0300 Subject: [PATCH] eth: disable legacy syncing on the merge interop pr for now --- eth/sync.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eth/sync.go b/eth/sync.go index 6138524d995a..104449c90807 100644 --- a/eth/sync.go +++ b/eth/sync.go @@ -113,9 +113,9 @@ func (cs *chainSyncer) loop() { defer cs.force.Stop() for { - if op := cs.nextSyncOp(); op != nil { - cs.startSync(op) - } + //if op := cs.nextSyncOp(); op != nil { + // cs.startSync(op) + //} select { case <-cs.peerEventCh: // Peer information changed, recheck.