git.delta.rocks / unique-network / refs/commits / 64ecfc595eff

difftreelog

refactor rename local xcm_config to xcm_barrier

Daniel Shiposha2022-09-06parent: #e0c98a4.patch.diff
in: master

11 files changed

modifiedruntime/common/config/xcm/mod.rsdiffbeforeafterboth
33use sp_std::{marker::PhantomData, vec::Vec};33use sp_std::{marker::PhantomData, vec::Vec};
34use crate::{34use crate::{
35 Runtime, Call, Event, Origin, ParachainInfo, ParachainSystem, PolkadotXcm, XcmpQueue,35 Runtime, Call, Event, Origin, ParachainInfo, ParachainSystem, PolkadotXcm, XcmpQueue,
36 xcm_config::Barrier,36 xcm_barrier::Barrier,
37};37};
3838
39use up_common::types::AccountId;39use up_common::types::AccountId;
modifiedruntime/opal/src/lib.rsdiffbeforeafterboth
35#[path = "../../common/mod.rs"]35#[path = "../../common/mod.rs"]
36mod runtime_common;36mod runtime_common;
3737
38pub mod xcm_config;38pub mod xcm_barrier;
3939
40#[cfg(test)]40#[cfg(test)]
41mod tests;41mod tests;
modifiedruntime/opal/src/tests/xcm.rsdiffbeforeafterboth
15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
1616
17use logtest::Logger;17use logtest::Logger;
18use crate::{runtime_common::tests::xcm::*, xcm_config::Barrier};18use crate::{runtime_common::tests::xcm::*, xcm_barrier::Barrier};
1919
20const OPAL_PARA_ID: u32 = 2095; // Same as Quartz20const OPAL_PARA_ID: u32 = 2095; // Same as Quartz
2121
addedruntime/opal/src/xcm_barrier.rsdiffbeforeafterboth

no changes

deletedruntime/opal/src/xcm_config.rsdiffbeforeafterboth

no changes

modifiedruntime/quartz/src/lib.rsdiffbeforeafterboth
35#[path = "../../common/mod.rs"]35#[path = "../../common/mod.rs"]
36mod runtime_common;36mod runtime_common;
3737
38pub mod xcm_config;38pub mod xcm_barrier;
3939
40#[cfg(test)]40#[cfg(test)]
41mod tests;41mod tests;
addedruntime/quartz/src/xcm_barrier.rsdiffbeforeafterboth

no changes

deletedruntime/quartz/src/xcm_config.rsdiffbeforeafterboth

no changes

modifiedruntime/unique/src/lib.rsdiffbeforeafterboth
35#[path = "../../common/mod.rs"]35#[path = "../../common/mod.rs"]
36mod runtime_common;36mod runtime_common;
3737
38pub mod xcm_config;38pub mod xcm_barrier;
3939
40#[cfg(test)]40#[cfg(test)]
41mod tests;41mod tests;
addedruntime/unique/src/xcm_barrier.rsdiffbeforeafterboth

no changes

deletedruntime/unique/src/xcm_config.rsdiffbeforeafterboth

no changes