Skip to content

Commit

Permalink
Partially revert #4477
Browse files Browse the repository at this point in the history
  • Loading branch information
prestonvanloon committed Jan 15, 2020
1 parent d8d9f44 commit 70d3261
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions beacon-chain/sync/initial-sync/service.go
Expand Up @@ -115,10 +115,11 @@ func (s *Service) Start() {
return
}
s.waitForMinimumPeers()
if err := s.roundRobinSync(genesis); err == nil {
log.Infof("Synced up to slot %d", s.chain.HeadSlot())
s.synced = true
if err := s.roundRobinSync(genesis); err != nil {
panic(err)
}
log.Infof("Synced up to slot %d", s.chain.HeadSlot())
s.synced = true
}

// Stop initial sync.
Expand Down

0 comments on commit 70d3261

Please sign in to comment.