From 0ead015d23b2ffb64c7e07451f379d7eaa2e5a93 Mon Sep 17 00:00:00 2001 From: Just van Stam Date: Tue, 21 Mar 2023 17:49:13 +0100 Subject: [PATCH 1/3] add AdminOrigin to all xcm-configs in cumulus --- parachain-template/runtime/src/xcm_config.rs | 2 ++ parachains/runtimes/assets/statemine/src/xcm_config.rs | 2 ++ parachains/runtimes/assets/statemint/src/xcm_config.rs | 2 ++ parachains/runtimes/assets/westmint/src/xcm_config.rs | 2 ++ .../runtimes/bridge-hubs/bridge-hub-kusama/src/xcm_config.rs | 2 ++ .../runtimes/bridge-hubs/bridge-hub-polkadot/src/xcm_config.rs | 2 ++ .../runtimes/bridge-hubs/bridge-hub-rococo/src/xcm_config.rs | 2 ++ .../runtimes/collectives/collectives-polkadot/src/xcm_config.rs | 2 ++ .../runtimes/contracts/contracts-rococo/src/xcm_config.rs | 1 + parachains/runtimes/testing/penpal/src/xcm_config.rs | 2 ++ parachains/runtimes/testing/rococo-parachain/src/lib.rs | 1 + 11 files changed, 20 insertions(+) diff --git a/parachain-template/runtime/src/xcm_config.rs b/parachain-template/runtime/src/xcm_config.rs index 8383e096a7d..b82be7aebf0 100644 --- a/parachain-template/runtime/src/xcm_config.rs +++ b/parachain-template/runtime/src/xcm_config.rs @@ -8,6 +8,7 @@ use frame_support::{ traits::{ConstU32, Everything, Nothing}, weights::Weight, }; +use frame_system::EnsureRoot; use pallet_xcm::XcmPassthrough; use polkadot_parachain::primitives::Sibling; use polkadot_runtime_common::impls::ToAuthor; @@ -246,6 +247,7 @@ impl pallet_xcm::Config for Runtime { type WeightInfo = pallet_xcm::TestWeightInfo; #[cfg(feature = "runtime-benchmarks")] type ReachableDest = ReachableDest; + type AdminOrigin = EnsureRoot; } impl cumulus_pallet_xcm::Config for Runtime { diff --git a/parachains/runtimes/assets/statemine/src/xcm_config.rs b/parachains/runtimes/assets/statemine/src/xcm_config.rs index 5f4dacda475..acabe9c878b 100644 --- a/parachains/runtimes/assets/statemine/src/xcm_config.rs +++ b/parachains/runtimes/assets/statemine/src/xcm_config.rs @@ -22,6 +22,7 @@ use frame_support::{ match_types, parameter_types, traits::{ConstU32, Contains, Everything, Nothing, PalletInfoAccess}, }; +use frame_system::EnsureRoot; use pallet_xcm::XcmPassthrough; use parachains_common::{ impls::ToStakingPot, @@ -407,6 +408,7 @@ impl pallet_xcm::Config for Runtime { type WeightInfo = crate::weights::pallet_xcm::WeightInfo; #[cfg(feature = "runtime-benchmarks")] type ReachableDest = ReachableDest; + type AdminOrigin = EnsureRoot; } impl cumulus_pallet_xcm::Config for Runtime { diff --git a/parachains/runtimes/assets/statemint/src/xcm_config.rs b/parachains/runtimes/assets/statemint/src/xcm_config.rs index 810832d54e9..3456eda5559 100644 --- a/parachains/runtimes/assets/statemint/src/xcm_config.rs +++ b/parachains/runtimes/assets/statemint/src/xcm_config.rs @@ -22,6 +22,7 @@ use frame_support::{ match_types, parameter_types, traits::{ConstU32, Contains, Everything, Nothing, PalletInfoAccess}, }; +use frame_system::EnsureRoot; use pallet_xcm::XcmPassthrough; use parachains_common::{ impls::ToStakingPot, @@ -372,6 +373,7 @@ impl pallet_xcm::Config for Runtime { type WeightInfo = crate::weights::pallet_xcm::WeightInfo; #[cfg(feature = "runtime-benchmarks")] type ReachableDest = ReachableDest; + type AdminOrigin = EnsureRoot; } impl cumulus_pallet_xcm::Config for Runtime { diff --git a/parachains/runtimes/assets/westmint/src/xcm_config.rs b/parachains/runtimes/assets/westmint/src/xcm_config.rs index 064094e03d3..a3db0208685 100644 --- a/parachains/runtimes/assets/westmint/src/xcm_config.rs +++ b/parachains/runtimes/assets/westmint/src/xcm_config.rs @@ -22,6 +22,7 @@ use frame_support::{ match_types, parameter_types, traits::{ConstU32, Contains, Everything, Nothing, PalletInfoAccess}, }; +use frame_system::EnsureRoot; use pallet_xcm::XcmPassthrough; use parachains_common::{ impls::ToStakingPot, @@ -395,6 +396,7 @@ impl pallet_xcm::Config for Runtime { type WeightInfo = crate::weights::pallet_xcm::WeightInfo; #[cfg(feature = "runtime-benchmarks")] type ReachableDest = ReachableDest; + type AdminOrigin = EnsureRoot; } impl cumulus_pallet_xcm::Config for Runtime { diff --git a/parachains/runtimes/bridge-hubs/bridge-hub-kusama/src/xcm_config.rs b/parachains/runtimes/bridge-hubs/bridge-hub-kusama/src/xcm_config.rs index b9992438c83..e211355abbb 100644 --- a/parachains/runtimes/bridge-hubs/bridge-hub-kusama/src/xcm_config.rs +++ b/parachains/runtimes/bridge-hubs/bridge-hub-kusama/src/xcm_config.rs @@ -22,6 +22,7 @@ use frame_support::{ match_types, parameter_types, traits::{ConstU32, Contains, Everything, Nothing}, }; +use frame_system::EnsureRoot; use pallet_xcm::XcmPassthrough; use parachains_common::xcm_config::{ ConcreteNativeAssetFrom, DenyReserveTransferToRelayChain, DenyThenTry, @@ -260,6 +261,7 @@ impl pallet_xcm::Config for Runtime { type WeightInfo = crate::weights::pallet_xcm::WeightInfo; #[cfg(feature = "runtime-benchmarks")] type ReachableDest = ReachableDest; + type AdminOrigin = EnsureRoot; } impl cumulus_pallet_xcm::Config for Runtime { diff --git a/parachains/runtimes/bridge-hubs/bridge-hub-polkadot/src/xcm_config.rs b/parachains/runtimes/bridge-hubs/bridge-hub-polkadot/src/xcm_config.rs index e52bca88daf..d85edffe8d8 100644 --- a/parachains/runtimes/bridge-hubs/bridge-hub-polkadot/src/xcm_config.rs +++ b/parachains/runtimes/bridge-hubs/bridge-hub-polkadot/src/xcm_config.rs @@ -22,6 +22,7 @@ use frame_support::{ match_types, parameter_types, traits::{ConstU32, Contains, Everything, Nothing}, }; +use frame_system::EnsureRoot; use pallet_xcm::XcmPassthrough; use parachains_common::xcm_config::{ ConcreteNativeAssetFrom, DenyReserveTransferToRelayChain, DenyThenTry, @@ -260,6 +261,7 @@ impl pallet_xcm::Config for Runtime { type WeightInfo = crate::weights::pallet_xcm::WeightInfo; #[cfg(feature = "runtime-benchmarks")] type ReachableDest = ReachableDest; + type AdminOrigin = EnsureRoot; } impl cumulus_pallet_xcm::Config for Runtime { diff --git a/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/xcm_config.rs b/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/xcm_config.rs index 3067cb3f507..d23958ada3b 100644 --- a/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/xcm_config.rs +++ b/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/xcm_config.rs @@ -26,6 +26,7 @@ use pallet_xcm::XcmPassthrough; use parachains_common::xcm_config::{ ConcreteNativeAssetFrom, DenyReserveTransferToRelayChain, DenyThenTry, }; +use frame_system::EnsureRoot; use polkadot_parachain::primitives::Sibling; use polkadot_runtime_common::impls::ToAuthor; use xcm::latest::prelude::*; @@ -258,6 +259,7 @@ impl pallet_xcm::Config for Runtime { type WeightInfo = crate::weights::pallet_xcm::WeightInfo; #[cfg(feature = "runtime-benchmarks")] type ReachableDest = ReachableDest; + type AdminOrigin = EnsureRoot; } impl cumulus_pallet_xcm::Config for Runtime { diff --git a/parachains/runtimes/collectives/collectives-polkadot/src/xcm_config.rs b/parachains/runtimes/collectives/collectives-polkadot/src/xcm_config.rs index 3e63b6fe7c2..f9aa843cf8f 100644 --- a/parachains/runtimes/collectives/collectives-polkadot/src/xcm_config.rs +++ b/parachains/runtimes/collectives/collectives-polkadot/src/xcm_config.rs @@ -22,6 +22,7 @@ use frame_support::{ traits::{ConstU32, Contains, Everything, Nothing}, weights::Weight, }; +use frame_system::EnsureRoot; use pallet_xcm::XcmPassthrough; use parachains_common::{ impls::ToStakingPot, @@ -295,6 +296,7 @@ impl pallet_xcm::Config for Runtime { type WeightInfo = crate::weights::pallet_xcm::WeightInfo; #[cfg(feature = "runtime-benchmarks")] type ReachableDest = ReachableDest; + type AdminOrigin = EnsureRoot; } impl cumulus_pallet_xcm::Config for Runtime { diff --git a/parachains/runtimes/contracts/contracts-rococo/src/xcm_config.rs b/parachains/runtimes/contracts/contracts-rococo/src/xcm_config.rs index c71a60107e3..d8ed043fb54 100644 --- a/parachains/runtimes/contracts/contracts-rococo/src/xcm_config.rs +++ b/parachains/runtimes/contracts/contracts-rococo/src/xcm_config.rs @@ -212,6 +212,7 @@ impl pallet_xcm::Config for Runtime { type WeightInfo = pallet_xcm::TestWeightInfo; #[cfg(feature = "runtime-benchmarks")] type ReachableDest = ReachableDest; + type AdminOrigin = EnsureRoot; } impl cumulus_pallet_xcm::Config for Runtime { diff --git a/parachains/runtimes/testing/penpal/src/xcm_config.rs b/parachains/runtimes/testing/penpal/src/xcm_config.rs index 58051e1df34..89cfc2ced65 100644 --- a/parachains/runtimes/testing/penpal/src/xcm_config.rs +++ b/parachains/runtimes/testing/penpal/src/xcm_config.rs @@ -35,6 +35,7 @@ use frame_support::{ }, weights::Weight, }; +use frame_system::EnsureRoot; use pallet_asset_tx_payment::HandleCredit; use pallet_xcm::XcmPassthrough; use parachains_common::xcm_config::{DenyReserveTransferToRelayChain, DenyThenTry}; @@ -337,6 +338,7 @@ impl pallet_xcm::Config for Runtime { type WeightInfo = pallet_xcm::TestWeightInfo; #[cfg(feature = "runtime-benchmarks")] type ReachableDest = ReachableDest; + type AdminOrigin = EnsureRoot; } impl cumulus_pallet_xcm::Config for Runtime { diff --git a/parachains/runtimes/testing/rococo-parachain/src/lib.rs b/parachains/runtimes/testing/rococo-parachain/src/lib.rs index 8232556b720..532f39f368b 100644 --- a/parachains/runtimes/testing/rococo-parachain/src/lib.rs +++ b/parachains/runtimes/testing/rococo-parachain/src/lib.rs @@ -469,6 +469,7 @@ impl pallet_xcm::Config for Runtime { type WeightInfo = pallet_xcm::TestWeightInfo; #[cfg(feature = "runtime-benchmarks")] type ReachableDest = ReachableDest; + type AdminOrigin = EnsureRoot; } impl cumulus_pallet_xcm::Config for Runtime { From 2e040b4b4491eed13f91abf83faf8959ade191bb Mon Sep 17 00:00:00 2001 From: Just van Stam Date: Tue, 21 Mar 2023 18:01:18 +0100 Subject: [PATCH 2/3] cargo fmt --- .../runtimes/bridge-hubs/bridge-hub-rococo/src/xcm_config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/xcm_config.rs b/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/xcm_config.rs index d23958ada3b..66377877de4 100644 --- a/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/xcm_config.rs +++ b/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/xcm_config.rs @@ -22,11 +22,11 @@ use frame_support::{ match_types, parameter_types, traits::{ConstU32, Contains, Everything, Nothing}, }; +use frame_system::EnsureRoot; use pallet_xcm::XcmPassthrough; use parachains_common::xcm_config::{ ConcreteNativeAssetFrom, DenyReserveTransferToRelayChain, DenyThenTry, }; -use frame_system::EnsureRoot; use polkadot_parachain::primitives::Sibling; use polkadot_runtime_common::impls::ToAuthor; use xcm::latest::prelude::*; From 96539ad161a314f0b380fd246bd9a3f075dc9cc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Thu, 23 Mar 2023 11:06:10 +0100 Subject: [PATCH 3/3] Update Substrate & Polkadot --- Cargo.lock | 512 ++++++++++++++++++++++++++--------------------------- 1 file changed, 256 insertions(+), 256 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d2a9576e696..4724837ad77 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -513,7 +513,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "hash-db", "log", @@ -3315,7 +3315,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "parity-scale-codec", ] @@ -3338,7 +3338,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-support", "frame-support-procedural", @@ -3363,7 +3363,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "Inflector", "array-bytes 4.2.0", @@ -3410,7 +3410,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -3421,7 +3421,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -3438,7 +3438,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-support", "frame-system", @@ -3467,7 +3467,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "futures", "log", @@ -3483,7 +3483,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "bitflags 1.3.2", "environmental", @@ -3516,7 +3516,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "Inflector", "cfg-expr", @@ -3531,7 +3531,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3543,7 +3543,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "proc-macro2", "quote", @@ -3553,7 +3553,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-support", "log", @@ -3571,7 +3571,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -3586,7 +3586,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "parity-scale-codec", "sp-api", @@ -3595,7 +3595,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-support", "parity-scale-codec", @@ -4558,7 +4558,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "bitvec", "frame-benchmarking", @@ -4656,7 +4656,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "frame-support", "polkadot-primitives", @@ -5498,7 +5498,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "futures", "log", @@ -5517,7 +5517,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "anyhow", "jsonrpsee", @@ -6006,7 +6006,7 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "array-bytes 4.2.0", "frame-benchmarking", @@ -6027,7 +6027,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6045,7 +6045,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6060,7 +6060,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-support", "frame-system", @@ -6076,7 +6076,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-support", "frame-system", @@ -6092,7 +6092,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-support", "frame-system", @@ -6106,7 +6106,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6130,7 +6130,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6150,7 +6150,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6165,7 +6165,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-support", "frame-system", @@ -6184,7 +6184,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "array-bytes 4.2.0", "binary-merkle-tree", @@ -6208,7 +6208,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6226,7 +6226,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6270,7 +6270,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6287,7 +6287,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "bitflags 1.3.2", "environmental", @@ -6317,7 +6317,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "bitflags 1.3.2", "parity-scale-codec", @@ -6330,7 +6330,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "proc-macro2", "quote", @@ -6340,7 +6340,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6357,7 +6357,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6375,7 +6375,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6398,7 +6398,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6411,7 +6411,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6429,7 +6429,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6447,7 +6447,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6470,7 +6470,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "enumflags2", "frame-benchmarking", @@ -6486,7 +6486,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6506,7 +6506,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6523,7 +6523,7 @@ dependencies = [ [[package]] name = "pallet-insecure-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-support", "frame-system", @@ -6537,7 +6537,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6554,7 +6554,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6571,7 +6571,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6587,7 +6587,7 @@ dependencies = [ [[package]] name = "pallet-nfts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "enumflags2", "frame-benchmarking", @@ -6605,7 +6605,7 @@ dependencies = [ [[package]] name = "pallet-nfts-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-support", "pallet-nfts", @@ -6616,7 +6616,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6632,7 +6632,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-support", "frame-system", @@ -6649,7 +6649,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6669,7 +6669,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -6680,7 +6680,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-support", "frame-system", @@ -6697,7 +6697,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6721,7 +6721,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6738,7 +6738,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6753,7 +6753,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6771,7 +6771,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6786,7 +6786,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6805,7 +6805,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6822,7 +6822,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-support", "frame-system", @@ -6843,7 +6843,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6859,7 +6859,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-support", "frame-system", @@ -6873,7 +6873,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6896,7 +6896,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6907,7 +6907,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "log", "sp-arithmetic", @@ -6916,7 +6916,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "parity-scale-codec", "sp-api", @@ -6925,7 +6925,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6942,7 +6942,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-support", "frame-system", @@ -6971,7 +6971,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6989,7 +6989,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -7008,7 +7008,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-support", "frame-system", @@ -7024,7 +7024,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -7040,7 +7040,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -7052,7 +7052,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -7069,7 +7069,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -7084,7 +7084,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -7100,7 +7100,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -7115,7 +7115,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -7130,7 +7130,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -7151,7 +7151,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "frame-benchmarking", "frame-support", @@ -7693,7 +7693,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "futures", "polkadot-node-metrics", @@ -7708,7 +7708,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7722,7 +7722,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "derive_more", "fatality", @@ -7745,7 +7745,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "fatality", "futures", @@ -7766,7 +7766,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "clap 4.1.11", "frame-benchmarking-cli", @@ -7794,7 +7794,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "async-trait", "frame-benchmarking", @@ -7837,7 +7837,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "always-assert", "bitvec", @@ -7859,7 +7859,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "parity-scale-codec", "scale-info", @@ -7871,7 +7871,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "derive_more", "fatality", @@ -7896,7 +7896,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7910,7 +7910,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "futures", "futures-timer", @@ -7930,7 +7930,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "always-assert", "async-trait", @@ -7953,7 +7953,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "futures", "parity-scale-codec", @@ -7971,7 +7971,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "bitvec", "derive_more", @@ -8000,7 +8000,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "bitvec", "futures", @@ -8021,7 +8021,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "bitvec", "fatality", @@ -8040,7 +8040,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "futures", "polkadot-node-subsystem", @@ -8055,7 +8055,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "async-trait", "futures", @@ -8075,7 +8075,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "futures", "polkadot-node-metrics", @@ -8090,7 +8090,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "futures", "futures-timer", @@ -8107,7 +8107,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "fatality", "futures", @@ -8126,7 +8126,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "async-trait", "futures", @@ -8143,7 +8143,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "bitvec", "fatality", @@ -8161,7 +8161,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "always-assert", "assert_matches", @@ -8197,7 +8197,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "futures", "polkadot-node-primitives", @@ -8213,7 +8213,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "futures", "lru 0.9.0", @@ -8228,7 +8228,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "lazy_static", "log", @@ -8246,7 +8246,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "bs58", "futures", @@ -8265,7 +8265,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "async-trait", "derive_more", @@ -8287,7 +8287,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "bounded-vec", "futures", @@ -8310,7 +8310,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -8320,7 +8320,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "async-trait", "futures", @@ -8338,7 +8338,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "async-trait", "derive_more", @@ -8361,7 +8361,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "async-trait", "derive_more", @@ -8394,7 +8394,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "async-trait", "futures", @@ -8417,7 +8417,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "bounded-collections", "derive_more", @@ -8514,7 +8514,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -8530,7 +8530,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "bitvec", "hex-literal", @@ -8556,7 +8556,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "jsonrpsee", "mmr-rpc", @@ -8588,7 +8588,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "bitvec", "frame-benchmarking", @@ -8682,7 +8682,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "bitvec", "frame-benchmarking", @@ -8728,7 +8728,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "frame-support", "polkadot-primitives", @@ -8742,7 +8742,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "bs58", "parity-scale-codec", @@ -8754,7 +8754,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "bitflags 1.3.2", "bitvec", @@ -8798,7 +8798,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "async-trait", "frame-benchmarking-cli", @@ -8908,7 +8908,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8929,7 +8929,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8939,7 +8939,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8964,7 +8964,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "bitvec", "frame-election-provider-support", @@ -9025,7 +9025,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "frame-benchmarking", "frame-system", @@ -9761,7 +9761,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "binary-merkle-tree", "frame-benchmarking", @@ -9847,7 +9847,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "frame-support", "polkadot-primitives", @@ -10080,7 +10080,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "log", "sp-core", @@ -10091,7 +10091,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "async-trait", "futures", @@ -10119,7 +10119,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "futures", "futures-timer", @@ -10142,7 +10142,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -10157,7 +10157,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -10176,7 +10176,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10187,7 +10187,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "array-bytes 4.2.0", "chrono", @@ -10227,7 +10227,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "fnv", "futures", @@ -10253,7 +10253,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "hash-db", "kvdb", @@ -10279,7 +10279,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "async-trait", "futures", @@ -10304,7 +10304,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "async-trait", "futures", @@ -10333,7 +10333,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "async-trait", "fork-tree", @@ -10372,7 +10372,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "futures", "jsonrpsee", @@ -10394,7 +10394,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -10429,7 +10429,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "futures", "jsonrpsee", @@ -10448,7 +10448,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "fork-tree", "parity-scale-codec", @@ -10461,7 +10461,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "ahash 0.8.2", "array-bytes 4.2.0", @@ -10501,7 +10501,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "finality-grandpa", "futures", @@ -10521,7 +10521,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "async-trait", "futures", @@ -10544,7 +10544,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "lru 0.8.1", "parity-scale-codec", @@ -10568,7 +10568,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -10581,7 +10581,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "log", "sc-allocator", @@ -10594,7 +10594,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "anyhow", "cfg-if", @@ -10612,7 +10612,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "ansi_term", "futures", @@ -10628,7 +10628,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -10643,7 +10643,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "array-bytes 4.2.0", "async-channel", @@ -10687,7 +10687,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "cid", "futures", @@ -10707,7 +10707,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -10735,7 +10735,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "ahash 0.8.2", "futures", @@ -10754,7 +10754,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "array-bytes 4.2.0", "futures", @@ -10776,7 +10776,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -10810,7 +10810,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "array-bytes 4.2.0", "futures", @@ -10830,7 +10830,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "array-bytes 4.2.0", "bytes", @@ -10861,7 +10861,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "futures", "libp2p", @@ -10874,7 +10874,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10883,7 +10883,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "futures", "jsonrpsee", @@ -10913,7 +10913,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10932,7 +10932,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "http", "jsonrpsee", @@ -10947,7 +10947,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "array-bytes 4.2.0", "futures", @@ -10973,7 +10973,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "async-trait", "directories", @@ -11039,7 +11039,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "log", "parity-scale-codec", @@ -11050,7 +11050,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "clap 4.1.11", "fs4", @@ -11066,7 +11066,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -11085,7 +11085,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "futures", "libc", @@ -11104,7 +11104,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "chrono", "futures", @@ -11123,7 +11123,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "ansi_term", "atty", @@ -11154,7 +11154,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11165,7 +11165,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "async-trait", "futures", @@ -11192,7 +11192,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "async-trait", "futures", @@ -11206,7 +11206,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "async-channel", "futures", @@ -11687,7 +11687,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "enumn", "parity-scale-codec", @@ -11764,7 +11764,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "hash-db", "log", @@ -11782,7 +11782,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "Inflector", "blake2", @@ -11796,7 +11796,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "parity-scale-codec", "scale-info", @@ -11809,7 +11809,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "integer-sqrt", "num-traits", @@ -11823,7 +11823,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "parity-scale-codec", "scale-info", @@ -11836,7 +11836,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "parity-scale-codec", "sp-api", @@ -11848,7 +11848,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "futures", "log", @@ -11866,7 +11866,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "async-trait", "futures", @@ -11881,7 +11881,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "async-trait", "parity-scale-codec", @@ -11899,7 +11899,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "async-trait", "merlin", @@ -11922,7 +11922,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "lazy_static", "parity-scale-codec", @@ -11941,7 +11941,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "finality-grandpa", "log", @@ -11959,7 +11959,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "parity-scale-codec", "scale-info", @@ -11971,7 +11971,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "parity-scale-codec", "scale-info", @@ -11984,7 +11984,7 @@ dependencies = [ [[package]] name = "sp-core" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "array-bytes 4.2.0", "base58", @@ -12027,7 +12027,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "blake2b_simd", "byteorder", @@ -12041,7 +12041,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "proc-macro2", "quote", @@ -12052,7 +12052,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -12061,7 +12061,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "proc-macro2", "quote", @@ -12071,7 +12071,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "environmental", "parity-scale-codec", @@ -12082,7 +12082,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -12097,7 +12097,7 @@ dependencies = [ [[package]] name = "sp-io" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "bytes", "ed25519", @@ -12122,7 +12122,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "lazy_static", "sp-core", @@ -12133,7 +12133,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "futures", "merlin", @@ -12149,7 +12149,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "thiserror", "zstd", @@ -12158,7 +12158,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -12176,7 +12176,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "parity-scale-codec", "scale-info", @@ -12190,7 +12190,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "sp-api", "sp-core", @@ -12200,7 +12200,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "backtrace", "lazy_static", @@ -12210,7 +12210,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "rustc-hash", "serde", @@ -12220,7 +12220,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "either", "hash256-std-hasher", @@ -12242,7 +12242,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -12260,7 +12260,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "Inflector", "proc-macro-crate", @@ -12272,7 +12272,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "serde", "serde_json", @@ -12281,7 +12281,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "parity-scale-codec", "scale-info", @@ -12295,7 +12295,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "parity-scale-codec", "scale-info", @@ -12307,7 +12307,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "hash-db", "log", @@ -12327,12 +12327,12 @@ dependencies = [ [[package]] name = "sp-std" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" [[package]] name = "sp-storage" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "impl-serde", "parity-scale-codec", @@ -12345,7 +12345,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "async-trait", "futures-timer", @@ -12360,7 +12360,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "parity-scale-codec", "sp-std", @@ -12372,7 +12372,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "sp-api", "sp-runtime", @@ -12381,7 +12381,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "async-trait", "log", @@ -12397,7 +12397,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "ahash 0.8.2", "hash-db", @@ -12420,7 +12420,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "impl-serde", "parity-scale-codec", @@ -12437,7 +12437,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -12448,7 +12448,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -12462,7 +12462,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "parity-scale-codec", "scale-info", @@ -12786,7 +12786,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "platforms", ] @@ -12794,7 +12794,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -12813,7 +12813,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "hyper", "log", @@ -12825,7 +12825,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "async-trait", "jsonrpsee", @@ -12838,7 +12838,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "jsonrpsee", "log", @@ -12857,7 +12857,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -12883,7 +12883,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "futures", "substrate-test-utils-derive", @@ -12893,7 +12893,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12904,7 +12904,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "ansi_term", "build-helper", @@ -13020,7 +13020,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "frame-support", "polkadot-primitives", @@ -13411,7 +13411,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -13422,7 +13422,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -13552,7 +13552,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a14236059c2d3da052fb08295082341aa7b87240" +source = "git+https://github.com/paritytech/substrate?branch=master#a9e85ae50d0efbf66f9a715af3b31bf37b884a6e" dependencies = [ "async-trait", "clap 4.1.11", @@ -14480,7 +14480,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "bitvec", "frame-benchmarking", @@ -14572,7 +14572,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "frame-support", "polkadot-primitives", @@ -15008,7 +15008,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "bounded-collections", "derivative", @@ -15024,7 +15024,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "frame-support", "frame-system", @@ -15045,7 +15045,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "environmental", "frame-benchmarking", @@ -15065,7 +15065,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#e6893165ec49cbaf6b6073a494491af83323815d" +source = "git+https://github.com/paritytech/polkadot?branch=master#d8e6ca5e27aa5e0836853898bcce124648b3850e" dependencies = [ "Inflector", "proc-macro2",