-
Notifications
You must be signed in to change notification settings - Fork 6
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
Enhance consensus hook and relay chain configuration in cumulus parachain system #786
Conversation
/description |
/describe |
PR Description updated to latest commit (68a78b5) |
/describe |
PR Description updated to latest commit (0c3c794) |
@@ -39,11 +39,27 @@ impl cumulus_pallet_parachain_system::Config for Runtime { | |||
type XcmpMessageHandler = XcmpQueue; | |||
type ReservedXcmpWeight = ReservedXcmpWeight; | |||
type CheckAssociatedRelayNumber = cumulus_pallet_parachain_system::RelayNumberStrictlyIncreases; | |||
type ConsensusHook = cumulus_pallet_parachain_system::ExpectParentIncluded; | |||
type ConsensusHook = ConsensusHook; |
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.
Please, add the note regarding ExpectParentIncluded
, as this type "handles the migration to asynchronous backing gracefully", as per polkadot-sdk docs -> https://docs.rs/cumulus-pallet-parachain-system/latest/cumulus_pallet_parachain_system/consensus_hook/struct.ExpectParentIncluded.html and merge the PR
PR Type
enhancement
Description
FixedVelocityConsensusHook
.Changes walkthrough 📝
cumulus_parachain_system.rs
Enhance consensus hook with fixed velocity configuration
runtime/laos/src/configs/cumulus_parachain_system.rs
ConsensusHook
type to a new implementation.ConsensusHook
with specific parameters.