-
Notifications
You must be signed in to change notification settings - Fork 231
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
keep track of latest blocks for optimistic sync #3715
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
When launched with `--light-client-enable` the latest blocks are fetched and optimistic candidate blocks are passed to a callback (log for now). This helps accelerate syncing in the future (optimistic sync).
tersec
reviewed
Jun 8, 2022
tersec
reviewed
Jun 8, 2022
tersec
reviewed
Jun 8, 2022
tersec
reviewed
Jun 8, 2022
tersec
reviewed
Jun 8, 2022
tersec
reviewed
Jun 8, 2022
Co-authored-by: tersec <tersec@users.noreply.github.com>
tersec
reviewed
Jun 9, 2022
tersec
reviewed
Jun 9, 2022
beacon_chain/consensus_object_pools/block_clearance_light_client.nim
Outdated
Show resolved
Hide resolved
tersec
reviewed
Jun 9, 2022
tersec
reviewed
Jun 9, 2022
tersec
reviewed
Jun 10, 2022
beacon_chain/consensus_object_pools/block_clearance_light_client.nim
Outdated
Show resolved
Hide resolved
tersec
reviewed
Jun 10, 2022
tersec
approved these changes
Jun 10, 2022
etan-status
added a commit
that referenced
this pull request
Jun 10, 2022
…/lc-dbprep * commit '15967c407639ac48fcecf52f727555dae18a14b5': keep track of latest blocks for optimistic sync (#3715) separate non-zero exit code for doppelganger detection (#3728) cleanups: unused and duplicate imports, inconsistent naming conventions, URL updates (#3724) Change the log level for unrecognized json fields from debug to trace ncli: altair+ slot and state transitions (#3721) fix Nim 1.6 build deprecation warnings (#3712) remove unused stdlib imports (#3718)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When launched with
--light-client-enable
the latest blocks are fetchedand optimistic candidate blocks are passed to a callback (log for now).
This helps accelerate syncing in the future (optimistic sync).