From fc9d999e42ae1d361e59d4eebc4758bf33f04039 Mon Sep 17 00:00:00 2001 From: Christopher Campbell Date: Tue, 23 Jan 2024 10:06:03 -0500 Subject: [PATCH] revert experiment --- synchronizer/batches.go | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/synchronizer/batches.go b/synchronizer/batches.go index 8dca380c..dd3ffd87 100644 --- a/synchronizer/batches.go +++ b/synchronizer/batches.go @@ -252,12 +252,10 @@ func (bs *BatchSynchronizer) handleEvent(event *polygonvalidium.PolygonvalidiumS func (bs *BatchSynchronizer) resolve(batch batchKey) (*types.OffChainData, error) { // First try to get the data from the trusted sequencer - /* - data := bs.trySequencer(batch) - if data != nil { - return data, nil - } - */ + data := bs.trySequencer(batch) + if data != nil { + return data, nil + } // If the sequencer failed to produce data, try the other nodes if len(bs.committee) == 0 {