Remove "staging-" prefix from XCM and parachain info modules and dependencies #803
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.
PR Type
enhancement
Description
staging_xcm
and related modules withxcm
and its corresponding modules.parachain_info
configurations to remove the "staging-" prefix.Changes walkthrough 📝
mod.rs
Update XCM version reference in chain spec
node/src/chain_spec/mod.rs
SAFE_XCM_VERSION
to usexcm::prelude::XCM_VERSION
instead ofstaging_xcm::prelude::XCM_VERSION
.mod.rs
Update parachain info configuration
runtime/laos/src/configs/mod.rs
parachain_info::Config
forRuntime
.xcm_config.rs
Replace staging XCM with XCM in configuration
runtime/laos/src/configs/xcm_config.rs
staging_xcm
andstaging_xcm_builder
withxcm
andxcm_builder
.XcmExecutor
implementation to usexcm_executor
.xcm_message_queue.rs
Update XCM message queue configuration
runtime/laos/src/configs/xcm_message_queue.rs
MessageProcessor
to usexcm_builder::ProcessXcmMessage
.XcmExecutor
to usexcm_executor
.lib.rs
Update parachain info in runtime construction
runtime/laos/src/lib.rs
ParachainInfo
to useparachain_info
instead ofstaging_parachain_info
.Cargo.toml
Update Cargo dependencies for XCM and parachain info
Cargo.toml
staging-parachain-info
withparachain-info
.Cargo.toml
Update XCM dependency in node Cargo
node/Cargo.toml
staging-xcm
toxcm
.Cargo.toml
Update runtime dependencies for XCM and parachain info
runtime/laos/Cargo.toml
prefix.