Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed finality sync back in gnosis #7527

Merged
merged 1 commit into from
May 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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