Skip to content

Commit

Permalink
disable parallel synchronization
Browse files Browse the repository at this point in the history
  • Loading branch information
ARR552 committed Apr 15, 2024
1 parent 6f65690 commit 9dbec04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synchronizer/synchronizer.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ func NewSynchronizer(
res.l1EventProcessors = defaultsL1EventProcessors(res, l1checkerL2Blocks)
switch cfg.L1SynchronizationMode {
case ParallelMode:
log.Info("L1SynchronizationMode is parallel")
log.Fatal("L1SynchronizationMode is parallel. Not yet suported, please used sequential mode to sync")
res.l1SyncOrchestration = newL1SyncParallel(ctx, cfg, etherManForL1, res, runInDevelopmentMode)
case SequentialMode:
log.Info("L1SynchronizationMode is sequential")
Expand Down

0 comments on commit 9dbec04

Please sign in to comment.