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

Updated secondary slot algo doc #6297

Merged
merged 3 commits into from
Oct 7, 2024
Merged
Changes from 1 commit
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
6 changes: 3 additions & 3 deletions docs/learn/learn-consensus.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ build in some capacity until finalization kicks in and amputates a fork. See
### No Validators in Slot

When no validators have rolled low enough in the randomness lottery to qualify for block production,
a slot can remain seemingly blockless. We avoid this by running a secondary, round-robin style
validator selection algorithm in the background. The validators selected to produce blocks through
this algorithm always produce blocks. Still, these _secondary_ blocks are ignored if the same slot
a slot can remain seemingly blockless. We run a secondary validator selection algorithm in the
background to prevent this. The validators selected through this predictable algorithm always produce
blocks. Still, these _secondary_ blocks are ignored if the same slot
DrW3RK marked this conversation as resolved.
Show resolved Hide resolved
also produces a primary block from a [VRF-selected](./learn-cryptography.md#randomness) validator.
Thus, a slot can have either a _primary_ or a _secondary_ block, and no slots are ever skipped.

Expand Down