Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
da6c8fb
[Collator Protocol] Add CandidateDescriptorV3 support to experimental…
AlexandruCihodaru Mar 6, 2026
02055b4
Update from github-actions[bot] running command 'prdoc --audience nod…
github-actions[bot] Mar 9, 2026
bd07bd7
[Collator Protocol] Move CandidateDescriptorV3 feature check to sessi…
AlexandruCihodaru Mar 9, 2026
0331aa2
Merge remote-tracking branch 'origin' into acihodaru/experimental_val…
AlexandruCihodaru Mar 9, 2026
ea2f122
Merge remote-tracking branch 'origin' into acihodaru/experimental_val…
AlexandruCihodaru Mar 11, 2026
2eda45f
collator-protocol: Validate V3 scheduling parent against last finishe…
AlexandruCihodaru Mar 12, 2026
4374b00
Merge remote-tracking branch 'origin' into acihodaru/experimental_val…
AlexandruCihodaru Mar 13, 2026
6ee0b01
Update from github-actions[bot] running command 'fmt'
github-actions[bot] Mar 13, 2026
44f9d51
collator-protocol: Deduplicate V3 scheduling parent validation logic
AlexandruCihodaru Mar 14, 2026
4d8b0bb
fix some typos
AlexandruCihodaru Mar 17, 2026
1ff933c
Merge remote-tracking branch 'origin' into acihodaru/experimental_val…
AlexandruCihodaru Mar 17, 2026
da1f1a6
test that the parent of the sp from the current slot is accepted
AlexandruCihodaru Mar 17, 2026
b1b02ae
Merge remote-tracking branch 'origin' into acihodaru/experimental_val…
AlexandruCihodaru Mar 20, 2026
c6e225e
Update from github-actions[bot] running command 'fmt'
github-actions[bot] Mar 20, 2026
5dc858e
address comments
AlexandruCihodaru Mar 20, 2026
3ed7d90
Merge remote-tracking branch 'origin' into acihodaru/experimental_val…
AlexandruCihodaru Mar 23, 2026
354ae36
address feedback
AlexandruCihodaru Mar 23, 2026
3c184d8
remove manual hash implementation for Advertisement
AlexandruCihodaru Mar 23, 2026
e25b50f
Merge branch 'master' into acihodaru/experimental_validator_candidate_v3
AlexandruCihodaru Mar 23, 2026
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
2 changes: 1 addition & 1 deletion polkadot/node/core/backing/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1464,7 +1464,7 @@ async fn handle_validated_candidate_command<Context>(

// Ensure the collator is reported.
ctx.send_message(CollatorProtocolMessage::Invalid(
candidate.descriptor().relay_parent(),
sp_state.parent,
candidate,
))
.await;
Expand Down
Loading
Loading