Merged
Conversation
Sajjon
commented
Jul 1, 2025
Sajjon
commented
Jul 1, 2025
Sajjon
commented
Jul 1, 2025
alindima
reviewed
Jul 1, 2025
Sajjon
commented
Jul 2, 2025
Contributor
Author
|
/cmd fmt |
alindima
reviewed
Jul 2, 2025
sandreim
reviewed
Jul 3, 2025
|
All GitHub workflows were cancelled due to failure one of the required jobs. |
Sajjon
commented
Jul 4, 2025
| ValidationCodeBombLimit(SessionIndex, RuntimeApiSender<u32>), | ||
| /// Get the paraids at the relay parent. | ||
| /// `V14` | ||
| ParaIds(SessionIndex, RuntimeApiSender<Vec<ParaId>>), |
Contributor
Author
|
Manual testing show it works! [settings]
enable_tracing = false
[relaychain]
default_command = "polkadot"
chain = "rococo-local"
[[relaychain.nodes]]
name = "alice"
validator = true
[[relaychain.nodes]]
name = "bob"
validator = true
[[parachains]]
id = 2000
addToGenesis = true
[parachains.collator]
name = "collator01"
command = "adder-collator"
args = ["-lparachain=debug"]
[[parachains]]
id = 2001
addToGenesis = true
[parachains.collator]
name = "collator02"
command = "adder-collator"
args = ["-lparachain=debug"]
[[parachains]]
id = 2002
addToGenesis = true
[parachains.collator]
name = "collator03"
command = "adder-collator"
args = ["-lparachain=debug"]
[types.Header]
number = "u64"
parent_hash = "Hash"
post_state = "Hash"
and then I went to runtime calls in https://polkadot.js.org/apps/?rpc=ws://127.0.0.1:59016#/runtime and it shows:
So, success! |
alindima
reviewed
Jul 7, 2025
alindima
approved these changes
Jul 7, 2025
sandreim
approved these changes
Jul 7, 2025
rockbmb
approved these changes
Jul 7, 2025
| ValidationCodeBombLimit(SessionIndex, RuntimeApiSender<u32>), | ||
| /// Get the paraids at the relay parent. | ||
| /// `V14` | ||
| ParaIds(SessionIndex, RuntimeApiSender<Vec<ParaId>>), |
9 tasks
alvicsam
pushed a commit
that referenced
this pull request
Oct 17, 2025
github-merge-queue bot
pushed a commit
that referenced
this pull request
Feb 4, 2026
Implements the `CollationManager` and the new collator protocol (validator side) subsystem. Issues #8182 and #7752. These are the big remaining parts which would enable us to test the entire implementation. TODO: - [ ] add a couple more unit tests (see the suggestions at the bottom of the tests file) - [x] polish the ClaimQueueState and verify if it's sufficiently covered by unit tests - #10334 - #10368 - [x] add metrics and polish logs - #10730 - [x] add a CLI parameter for enabling the experimental subsystem (and remove the compile-time feature) -> #10285 - [x] implement registered paras update, using #9055 - [ ] do some manual zombienet tests with v1 protocol version and with restarting validators (including syncing with warp sync) - [x] prdoc - [x] Rollback - 03e8915 - 05e1497 These commits were added just to run the CI tests for this PR with the new experimental protocol After merging: - [ ] versi testing Uses a slightly modified version of the ClaimQueueState written by @tdimitrov in #7114. --------- Co-authored-by: Tsvetomir Dimitrov <tsvetomir@parity.io> Co-authored-by: Serban Iorga <serban@parity.io> Co-authored-by: Serban Iorga <serban300@gmail.com> Co-authored-by: cmd[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This file contains hidden or 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
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.

Implementation of #9053