diff --git a/Cargo.lock b/Cargo.lock index dcd7b1a56..4630fea95 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9968,7 +9968,6 @@ dependencies = [ "frame-support", "frame-system", "kusama-runtime", - "log", "orml-tokens", "orml-traits", "orml-xcm", @@ -9988,8 +9987,6 @@ dependencies = [ "polkadot-runtime-parachains", "runtime-common", "scale-info", - "serde", - "smallvec", "sp-core", "sp-debug-derive", "sp-io", diff --git a/runtime/integration-tests/Cargo.toml b/runtime/integration-tests/Cargo.toml index 92081583e..9eb10acbf 100644 --- a/runtime/integration-tests/Cargo.toml +++ b/runtime/integration-tests/Cargo.toml @@ -8,9 +8,6 @@ version = "0.1.0" [dev-dependencies] codec = { package = "parity-scale-codec", version = "3.0.0" } scale-info = { version = "2.1.2", features = ["derive"] } -serde = { version = "1.0.144", features = ["derive"] } -log = { version = "0.4.17", default-features = false } -smallvec = "1.9.0" # Spacewalk libraries spacewalk-primitives = { git = "https://github.com/pendulum-chain/spacewalk", default-features = false, rev = "58983d2695c309665c9c017a022436aaee088f3d"} diff --git a/runtime/integration-tests/src/sibling.rs b/runtime/integration-tests/src/sibling.rs index cf523f6d4..abe0f5430 100644 --- a/runtime/integration-tests/src/sibling.rs +++ b/runtime/integration-tests/src/sibling.rs @@ -369,18 +369,6 @@ parameter_types! { pub ReachableDest: Option = Some(Parent.into()); } -match_types! { - pub type ParentOrParachains: impl Contains = { - MultiLocation { parents: 0, interior: X1(Junction::AccountId32 { .. }) } | - MultiLocation { parents: 1, interior: X1(Junction::AccountId32 { .. }) } | - MultiLocation { parents: 1, interior: X2(Parachain(1), Junction::AccountId32 { .. }) } | - MultiLocation { parents: 1, interior: X2(Parachain(2), Junction::AccountId32 { .. }) } | - MultiLocation { parents: 1, interior: X2(Parachain(3), Junction::AccountId32 { .. }) } | - MultiLocation { parents: 1, interior: X2(Parachain(4), Junction::AccountId32 { .. }) } | - MultiLocation { parents: 1, interior: X2(Parachain(100), Junction::AccountId32 { .. }) } - }; -} - type UncheckedExtrinsic = frame_system::mocking::MockUncheckedExtrinsic; type Block = frame_system::mocking::MockBlock;