make xcm_config public (#4731)

This commit is contained in:
zqhxuyuan
2022-01-18 02:39:17 +08:00
committed by GitHub
parent 815021ab8a
commit c0ed54f1df
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -101,7 +101,7 @@ mod weights;
mod bag_thresholds; mod bag_thresholds;
// XCM configurations. // XCM configurations.
mod xcm_config; pub mod xcm_config;
#[cfg(test)] #[cfg(test)]
mod tests; mod tests;
+1 -1
View File
@@ -102,7 +102,7 @@ mod weights;
mod bag_thresholds; mod bag_thresholds;
mod xcm_config; pub mod xcm_config;
// Make the WASM binary available. // Make the WASM binary available.
#[cfg(feature = "std")] #[cfg(feature = "std")]
+1 -1
View File
@@ -89,7 +89,7 @@ use frame_support::traits::{InstanceFilter, OnRuntimeUpgrade};
mod bridge_messages; mod bridge_messages;
mod validator_manager; mod validator_manager;
mod weights; mod weights;
mod xcm_config; pub mod xcm_config;
// Make the WASM binary available. // Make the WASM binary available.
#[cfg(feature = "std")] #[cfg(feature = "std")]
+1 -1
View File
@@ -97,7 +97,7 @@ mod weights;
mod bag_thresholds; mod bag_thresholds;
// XCM configurations. // XCM configurations.
mod xcm_config; pub mod xcm_config;
#[cfg(test)] #[cfg(test)]
mod tests; mod tests;