-
Notifications
You must be signed in to change notification settings - Fork 101
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
Enable elastic scaling node side feature on Kusama #205
Conversation
This feature is required for Kusama to ensure that Parachains that have multiple cores assigned, still be able to include at least one block.
relay/kusama/src/lib.rs
Outdated
let _ = Configuration::set_node_feature(RawOrigin::Root.into(), 1, true); | ||
Weight::from_parts(1, 0) |
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.
why are we not returning the actual weight of the extrinsic?
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.
Because the function doesn't return it, but I got some idea
/merge |
Enabled Available commands
For more information see the documentation |
Failed to update PR ❌There was an error while trying to keep this PR You may have conflicts More info in the logs 📋 |
Failed to update PR ❌There was an error while trying to keep this PR You may have conflicts More info in the logs 📋 |
Failed to update PR ❌There was an error while trying to keep this PR You may have conflicts More info in the logs 📋 |
This feature is required for Kusama to ensure that Parachains that have multiple cores assigned, still be able to include at least one block. The relay chain itself doesn't support Parachains with multiple cores assigned right now, but this will come in later updates.