From 379addfa2ac0088e6d07e4f35edb8078a2e0cda3 Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Fri, 10 Jan 2025 23:41:31 +0100 Subject: [PATCH] config fix Signed-off-by: Oliver Tale-Yazdi --- Cargo.lock | 1 - Cargo.toml | 1 - integration-tests/ahm/Cargo.toml | 1 - pallets/ah-migrator/Cargo.toml | 6 +++--- pallets/rc-migrator/Cargo.toml | 6 +++--- 5 files changed, 6 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cb2cf0a135..cab5c2e1aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10041,7 +10041,6 @@ dependencies = [ "sp-core 34.0.0", "sp-io 38.0.0", "sp-runtime 39.0.2", - "sp-state-machine 0.43.0", "sp-storage 21.0.0", "sp-tracing 17.0.1", "tokio", diff --git a/Cargo.toml b/Cargo.toml index 521dd9be58..889d1a0b40 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -231,7 +231,6 @@ sp-offchain = { version = "34.0.0", default-features = false } sp-runtime = { version = "39.0.1", default-features = false } sp-session = { version = "36.0.0", default-features = false } sp-staking = { version = "36.0.0", default-features = false } -sp-state-machine = { version = "0.43.0", default-features = false } sp-std = { version = "14.0.0", default-features = false } sp-storage = { version = "21.0.0", default-features = false } sp-tracing = { version = "17.0.1", default-features = false } diff --git a/integration-tests/ahm/Cargo.toml b/integration-tests/ahm/Cargo.toml index ddb80350c0..a4da071fc0 100644 --- a/integration-tests/ahm/Cargo.toml +++ b/integration-tests/ahm/Cargo.toml @@ -32,4 +32,3 @@ sp-runtime = { workspace = true, default-features = true } sp-storage = { workspace = true, default-features = true } sp-tracing = { workspace = true, default-features = true } tokio = { features = ["full", "macros"], workspace = true } -sp-state-machine = { workspace = true, default-features = true } diff --git a/pallets/ah-migrator/Cargo.toml b/pallets/ah-migrator/Cargo.toml index a3f0cc9155..4cfe6176dd 100644 --- a/pallets/ah-migrator/Cargo.toml +++ b/pallets/ah-migrator/Cargo.toml @@ -41,6 +41,7 @@ std = [ "frame-system/std", "log/std", "pallet-balances/std", + "pallet-multisig/std", "pallet-nomination-pools/std", "pallet-preimage/std", "pallet-rc-migrator/std", @@ -56,13 +57,13 @@ std = [ "sp-io/std", "sp-runtime/std", "sp-std/std", - "pallet-multisig/std" ] runtime-benchmarks = [ "frame-benchmarking/runtime-benchmarks", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks", "pallet-balances/runtime-benchmarks", + "pallet-multisig/runtime-benchmarks", "pallet-nomination-pools/runtime-benchmarks", "pallet-preimage/runtime-benchmarks", "pallet-rc-migrator/runtime-benchmarks", @@ -72,12 +73,12 @@ runtime-benchmarks = [ "polkadot-runtime-common/runtime-benchmarks", "runtime-parachains/runtime-benchmarks", "sp-runtime/runtime-benchmarks", - "pallet-multisig/runtime-benchmarks" ] try-runtime = [ "frame-support/try-runtime", "frame-system/try-runtime", "pallet-balances/try-runtime", + "pallet-multisig/try-runtime", "pallet-nomination-pools/try-runtime", "pallet-preimage/try-runtime", "pallet-rc-migrator/try-runtime", @@ -86,5 +87,4 @@ try-runtime = [ "polkadot-runtime-common/try-runtime", "runtime-parachains/try-runtime", "sp-runtime/try-runtime", - "pallet-multisig/try-runtime" ] diff --git a/pallets/rc-migrator/Cargo.toml b/pallets/rc-migrator/Cargo.toml index d71e3109fe..d5419850f5 100644 --- a/pallets/rc-migrator/Cargo.toml +++ b/pallets/rc-migrator/Cargo.toml @@ -37,6 +37,7 @@ std = [ "frame-system/std", "log/std", "pallet-balances/std", + "pallet-multisig/std", "pallet-staking/std", "polkadot-parachain-primitives/std", "polkadot-runtime-common/std", @@ -48,27 +49,26 @@ std = [ "sp-runtime/std", "sp-std/std", "xcm/std", - "pallet-multisig/std" ] runtime-benchmarks = [ "frame-benchmarking/runtime-benchmarks", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks", "pallet-balances/runtime-benchmarks", + "pallet-multisig/runtime-benchmarks", "pallet-staking/runtime-benchmarks", "polkadot-parachain-primitives/runtime-benchmarks", "polkadot-runtime-common/runtime-benchmarks", "runtime-parachains/runtime-benchmarks", "sp-runtime/runtime-benchmarks", - "pallet-multisig/runtime-benchmarks" ] try-runtime = [ "frame-support/try-runtime", "frame-system/try-runtime", "pallet-balances/try-runtime", + "pallet-multisig/try-runtime", "pallet-staking/try-runtime", "polkadot-runtime-common/try-runtime", "runtime-parachains/try-runtime", "sp-runtime/try-runtime", - "pallet-multisig/try-runtime" ]