This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
expand validity subsystems descriptions independent of subsystems overview #1185
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
cbaf2f3
expand subsystems descriptions independent of subsystems overview
coriolinus 45674fa
Reorder subsystem descriptions, add some messages
coriolinus cc68890
add some more message types, Statement Distribution overview
coriolinus 4679c5f
add more detail on Statement Distribution, Misbehavior Arbitration
coriolinus d22b23a
Merge remote-tracking branch 'origin/master' into prgn-guide-subsyste…
coriolinus 97de4c4
intentionally punt MA details for a future PR
coriolinus c938d16
reduce duplication from overseer signal handling
coriolinus 1d6337b
reword for clarity
coriolinus 0803ee5
clarify: other modules and subsystems also get to talk to the network
coriolinus 572118c
Merge remote-tracking branch 'origin/master' into prgn-guide-subsyste…
coriolinus 07df04a
finish current work on candidate selection
coriolinus 45a548a
update candidate backing subsystem description according to current t…
coriolinus 460d581
update mechanism for candidate backing to report collator misbehavior…
coriolinus f084834
sketch out the peer receipt state machine
coriolinus a46bd64
Fix typo in roadmap/implementors-guide/guide.md
coriolinus ec87322
Don't specify 'peer validators', as messages from non-validator peers…
coriolinus e8137ad
clarify instancing of peer receipt state machine
coriolinus d8085fa
add section on peer knowledge tracking
coriolinus 6fc1316
fix typo in roadmap/implementors-guide/guide.md
coriolinus File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should be fine to receive a
Valid(X)
signed by A before aSeconded(Y)
. I can see the justification for not allowing it, but it does not seem to get us much of a win. Requiring that we knowSeconded(Y)
beforeValid(Y)
already restricts us to a bounded set of messages, and is simpler to implement (as it is a more focused condition).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I'll add that this state machine applies for each individual parablock candidate, not for all candidates from a particular validator.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And then there should be a small note in there about knowledge tracking for our peers, so we know who knows which candidates based on what they've sent or what we've sent them (this needs to be scoped to active relay-parent set)