This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
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.
Override RuntimeApi::authorities() to include past sessions #2494
Override RuntimeApi::authorities() to include past sessions #2494
Changes from 3 commits
10b0b4a
21846f8
25c20f0
0f2db99
db6dc2b
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
The API of this function has now changed and it can include duplicates.
This function should include the call to
AuthorityDiscovery::next_authorities
which can be achieved by adding an extra bound onT
if necessary (although I believe it is implied byinitializer::Config
.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.
@rphmeier I am slightly confused right now. Is
session_info[current_session_index].discovery_keys
is equivalent toAutorityDiscovery::next_authorities()
in every case? (Based on your earlier comment above) In that case, I can directly doearliest_session..=current_session
, instead of callingAuthorityDiscovery::next_authorities
.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.
No, that's not what I said at all. Please re-review my comment!
session_info[current_session_index].discovery_keys
is the same asAuthorityDiscovery::current_authorities
. Why would it be otherwise? This is the only thing that makes sense.but != because.
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.
@rphmeier Ok. Makes sense. I have updated code to reflect this. cc: @ordian
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.
I imagine this might be racy and error-prone at session boundaries, we can maybe iterate directly over the
Sessions
storage, but that's probably racy as wellThere 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.
@ordian At session boundary, If there is a race condition between getting session indexes above and loop execution, we might miss latest session's authority ids, which can break the semantics. So, to cover widest possible range here we can query session info from earliest..=current+1.
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.
This should be fine at session boundaries as session changes are applied at the end of the parent block. The code comment in
fn session_index_for_child
is outdated and wrong and that threw me for a loop while investigating this comment.Iterating up to
current_session_index
is fine but we also want to include theAuthorityDiscovery::next_authorities
here. AlthoughAuthorityDiscovery
updates itscurrent
andnext
authorities at the beginning of the parent block, we are past the end of the parent block here andcurrent
should have made their way intoSessionInfo
.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.
yeah, we need to include authorities for the next session as well here
the rationale is outlined in paritytech/substrate#6788