Skip to content

Commit

Permalink
Fixed finality sync back in gnosis (#7527)
Browse files Browse the repository at this point in the history
  • Loading branch information
Giulio2002 authored May 16, 2023
1 parent 3f9ae3e commit 53b116c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions cl/phase1/forkchoice/forkchoice.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,13 @@ func (f *ForkChoiceStore) FinalizedCheckpoint() solid.Checkpoint {
return f.finalizedCheckpoint
}

// FinalizedCheckpoint returns justified checkpoint
func (f *ForkChoiceStore) FinalizedSlot() uint64 {
f.mu.Lock()
defer f.mu.Unlock()
return f.computeStartSlotAtEpoch(f.finalizedCheckpoint.Epoch())
}

// FinalizedCheckpoint returns justified checkpoint
func (f *ForkChoiceStore) Engine() execution_client.ExecutionEngine {
f.mu.Lock()
Expand Down
2 changes: 1 addition & 1 deletion cl/phase1/stages/stage_fork_choice.go
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ MainLoop:

cfg.downloader.SetHighestProcessedRoot(libcommon.Hash{})
cfg.downloader.SetHighestProcessedSlot(
utils.Max64(startDownloadSlot, cfg.forkChoice.AnchorSlot()))
utils.Max64(startDownloadSlot, cfg.forkChoice.FinalizedSlot()))

// Wait small time
log.Debug("Caplin may have missed some slots, started downloading chain")
Expand Down

0 comments on commit 53b116c

Please sign in to comment.