From c0ed54f1df7655544e01bbf0fe992b0a42ad1cf8 Mon Sep 17 00:00:00 2001 From: zqhxuyuan Date: Tue, 18 Jan 2022 02:39:17 +0800 Subject: [PATCH] make xcm_config public (#4731) --- polkadot/runtime/kusama/src/lib.rs | 2 +- polkadot/runtime/polkadot/src/lib.rs | 2 +- polkadot/runtime/rococo/src/lib.rs | 2 +- polkadot/runtime/westend/src/lib.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/polkadot/runtime/kusama/src/lib.rs b/polkadot/runtime/kusama/src/lib.rs index c0b6e2d27c..9e41c3782a 100644 --- a/polkadot/runtime/kusama/src/lib.rs +++ b/polkadot/runtime/kusama/src/lib.rs @@ -101,7 +101,7 @@ mod weights; mod bag_thresholds; // XCM configurations. -mod xcm_config; +pub mod xcm_config; #[cfg(test)] mod tests; diff --git a/polkadot/runtime/polkadot/src/lib.rs b/polkadot/runtime/polkadot/src/lib.rs index 984fe16093..d39056b95f 100644 --- a/polkadot/runtime/polkadot/src/lib.rs +++ b/polkadot/runtime/polkadot/src/lib.rs @@ -102,7 +102,7 @@ mod weights; mod bag_thresholds; -mod xcm_config; +pub mod xcm_config; // Make the WASM binary available. #[cfg(feature = "std")] diff --git a/polkadot/runtime/rococo/src/lib.rs b/polkadot/runtime/rococo/src/lib.rs index 8208fa548e..89e9b2ce3d 100644 --- a/polkadot/runtime/rococo/src/lib.rs +++ b/polkadot/runtime/rococo/src/lib.rs @@ -89,7 +89,7 @@ use frame_support::traits::{InstanceFilter, OnRuntimeUpgrade}; mod bridge_messages; mod validator_manager; mod weights; -mod xcm_config; +pub mod xcm_config; // Make the WASM binary available. #[cfg(feature = "std")] diff --git a/polkadot/runtime/westend/src/lib.rs b/polkadot/runtime/westend/src/lib.rs index 318018dd6a..051db95a01 100644 --- a/polkadot/runtime/westend/src/lib.rs +++ b/polkadot/runtime/westend/src/lib.rs @@ -97,7 +97,7 @@ mod weights; mod bag_thresholds; // XCM configurations. -mod xcm_config; +pub mod xcm_config; #[cfg(test)] mod tests;