Skip to content

Commit

Permalink
l2geth: return error in the SyncService.Start()
Browse files Browse the repository at this point in the history
  • Loading branch information
tynes committed May 14, 2021
1 parent f7d18c1 commit c38ec87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion l2geth/rollup/sync_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ func (s *SyncService) Start() error {
return fmt.Errorf("Sequencer cannot sync transactions to tip: %w", err)
}
if err := s.syncQueueToTip(); err != nil {
log.Error("Sequencer cannot sync queue", "msg", err)
return fmt.Errorf("Sequencer cannot sync queue to tip: %w", err)
}
s.setSyncStatus(false)
go s.SequencerLoop()
Expand Down

0 comments on commit c38ec87

Please sign in to comment.