From 6a67b7897c1ed4ed43df8acee5a7b20625f5e678 Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Sun, 12 Jun 2022 13:32:05 +0100 Subject: [PATCH 1/4] Add default error for unsupported benchmarking command Signed-off-by: Oliver Tale-Yazdi --- polkadot-parachain/src/command.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/polkadot-parachain/src/command.rs b/polkadot-parachain/src/command.rs index daf24797b55..cab9cf978d0 100644 --- a/polkadot-parachain/src/command.rs +++ b/polkadot-parachain/src/command.rs @@ -499,9 +499,12 @@ pub fn run() -> Result<()> { cmd.run(config, partials.client.clone(), db, storage) }) }), - BenchmarkCmd::Overhead(_) => Err("Unsupported benchmarking command".into()), BenchmarkCmd::Machine(cmd) => runner.sync_run(|config| cmd.run(&config, SUBSTRATE_REFERENCE_HARDWARE.clone())), + // NOTE: this allows the Client to leniently implement + // new benchmark commands without requiring a companion MR. + #[allow(unreachable_patterns)] + _ => Err("Benchmarking sub-command unsupported".into()), } }, Some(Subcommand::TryRuntime(cmd)) => { From 9d6525d1631959a1ba0f62b33eb63abcc86c4cca Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Sun, 12 Jun 2022 13:52:46 +0100 Subject: [PATCH 2/4] Same for the parachain-template... Signed-off-by: Oliver Tale-Yazdi --- parachain-template/node/src/command.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/parachain-template/node/src/command.rs b/parachain-template/node/src/command.rs index 47691d41e04..1594dd48e85 100644 --- a/parachain-template/node/src/command.rs +++ b/parachain-template/node/src/command.rs @@ -260,9 +260,12 @@ pub fn run() -> Result<()> { cmd.run(config, partials.client.clone(), db, storage) }), - BenchmarkCmd::Overhead(_) => Err("Unsupported benchmarking command".into()), BenchmarkCmd::Machine(cmd) => runner.sync_run(|config| cmd.run(&config, SUBSTRATE_REFERENCE_HARDWARE.clone())), + // NOTE: this allows the Client to leniently implement + // new benchmark commands without requiring a companion MR. + #[allow(unreachable_patterns)] + _ => Err("Benchmarking sub-command unsupported".into()), } }, Some(Subcommand::TryRuntime(cmd)) => { From fcdad7422d102af6ce92e1314ea394889f58438f Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Tue, 19 Jul 2022 14:13:08 +0200 Subject: [PATCH 3/4] cargo update -p sp-io Signed-off-by: Oliver Tale-Yazdi --- Cargo.lock | 365 ++++++++++++++++++++++++++--------------------------- 1 file changed, 182 insertions(+), 183 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c2a21c36d17..340d01159ee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -432,7 +432,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "beefy-primitives", "fnv", @@ -466,7 +466,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -486,7 +486,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "beefy-primitives", "sp-api", @@ -495,7 +495,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "parity-scale-codec", "scale-info", @@ -2673,7 +2673,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "parity-scale-codec", ] @@ -2691,7 +2691,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-support", "frame-system", @@ -2713,7 +2713,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "Inflector", "chrono", @@ -2764,7 +2764,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2775,7 +2775,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2791,7 +2791,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-support", "frame-system", @@ -2819,7 +2819,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "bitflags", "frame-metadata", @@ -2849,7 +2849,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2861,7 +2861,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2873,7 +2873,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "proc-macro2", "quote", @@ -2883,7 +2883,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-support", "log", @@ -2900,7 +2900,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -2915,7 +2915,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "parity-scale-codec", "sp-api", @@ -2924,7 +2924,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-support", "sp-api", @@ -5304,7 +5304,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-support", "frame-system", @@ -5321,7 +5321,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5335,7 +5335,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-support", "frame-system", @@ -5351,7 +5351,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-support", "frame-system", @@ -5367,7 +5367,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-support", "frame-system", @@ -5382,7 +5382,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5406,7 +5406,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5426,7 +5426,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5441,7 +5441,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "beefy-primitives", "frame-support", @@ -5457,7 +5457,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -5480,7 +5480,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5498,7 +5498,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5543,7 +5543,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5560,12 +5560,13 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "bitflags", "frame-benchmarking", "frame-support", "frame-system", + "impl-trait-for-tuples", "log", "pallet-contracts-primitives", "pallet-contracts-proc-macro", @@ -5587,7 +5588,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "bitflags", "parity-scale-codec", @@ -5602,7 +5603,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "proc-macro2", "quote", @@ -5612,7 +5613,7 @@ dependencies = [ [[package]] name = "pallet-contracts-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "jsonrpsee", "pallet-contracts-primitives", @@ -5629,7 +5630,7 @@ dependencies = [ [[package]] name = "pallet-contracts-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "pallet-contracts-primitives", "parity-scale-codec", @@ -5642,7 +5643,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5658,7 +5659,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5681,7 +5682,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5694,7 +5695,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5712,7 +5713,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5727,7 +5728,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5750,7 +5751,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5766,7 +5767,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5786,7 +5787,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5803,7 +5804,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5820,7 +5821,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5838,7 +5839,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5853,7 +5854,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5868,7 +5869,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-support", "frame-system", @@ -5885,7 +5886,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5904,7 +5905,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-support", "frame-system", @@ -5921,7 +5922,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5944,7 +5945,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5960,7 +5961,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -5975,7 +5976,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-support", "frame-system", @@ -5989,7 +5990,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6004,7 +6005,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6020,7 +6021,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-support", "frame-system", @@ -6041,7 +6042,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6057,7 +6058,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-support", "frame-system", @@ -6071,7 +6072,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6094,7 +6095,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6105,7 +6106,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "log", "sp-arithmetic", @@ -6114,7 +6115,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-support", "frame-system", @@ -6143,7 +6144,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6161,7 +6162,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6180,7 +6181,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-support", "frame-system", @@ -6196,7 +6197,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6211,7 +6212,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6222,7 +6223,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6239,7 +6240,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6254,7 +6255,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -6270,7 +6271,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-benchmarking", "frame-support", @@ -8738,7 +8739,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9119,7 +9120,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "log", "sp-core", @@ -9130,7 +9131,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "async-trait", "futures", @@ -9157,7 +9158,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "futures", "futures-timer", @@ -9180,7 +9181,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9196,7 +9197,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9213,7 +9214,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9224,7 +9225,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "chrono", "clap 3.2.12", @@ -9263,7 +9264,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "fnv", "futures", @@ -9291,7 +9292,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "hash-db", "kvdb", @@ -9316,7 +9317,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "async-trait", "futures", @@ -9340,7 +9341,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "async-trait", "futures", @@ -9369,7 +9370,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "async-trait", "fork-tree", @@ -9412,7 +9413,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "futures", "jsonrpsee", @@ -9434,7 +9435,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9447,7 +9448,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "async-trait", "futures", @@ -9472,7 +9473,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "sc-client-api", "sp-authorship", @@ -9483,7 +9484,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9510,7 +9511,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "environmental", "parity-scale-codec", @@ -9527,7 +9528,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "log", "parity-scale-codec", @@ -9542,7 +9543,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9562,7 +9563,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "ahash", "async-trait", @@ -9603,7 +9604,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "finality-grandpa", "futures", @@ -9624,7 +9625,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "ansi_term", "futures", @@ -9641,7 +9642,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "async-trait", "hex", @@ -9656,7 +9657,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "async-trait", "asynchronous-codec", @@ -9705,7 +9706,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "bitflags", "futures", @@ -9723,7 +9724,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "ahash", "futures", @@ -9740,7 +9741,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "futures", "libp2p", @@ -9760,7 +9761,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "fork-tree", "futures", @@ -9787,7 +9788,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "bytes", "fnv", @@ -9815,7 +9816,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "futures", "libp2p", @@ -9828,7 +9829,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9837,7 +9838,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "futures", "hash-db", @@ -9867,7 +9868,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "futures", "jsonrpsee", @@ -9890,7 +9891,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "futures", "jsonrpsee", @@ -9903,7 +9904,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "async-trait", "directories", @@ -9970,7 +9971,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "log", "parity-scale-codec", @@ -9984,7 +9985,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10003,7 +10004,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "futures", "libc", @@ -10022,7 +10023,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "chrono", "futures", @@ -10040,7 +10041,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "ansi_term", "atty", @@ -10071,7 +10072,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10082,7 +10083,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "futures", "futures-timer", @@ -10109,7 +10110,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "futures", "log", @@ -10122,7 +10123,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "futures", "futures-timer", @@ -10643,7 +10644,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "hash-db", "log", @@ -10660,7 +10661,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "blake2", "proc-macro-crate", @@ -10672,7 +10673,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "parity-scale-codec", "scale-info", @@ -10685,7 +10686,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "integer-sqrt", "num-traits", @@ -10700,7 +10701,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "parity-scale-codec", "scale-info", @@ -10713,7 +10714,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "async-trait", "parity-scale-codec", @@ -10725,7 +10726,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "parity-scale-codec", "sp-api", @@ -10737,7 +10738,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "futures", "log", @@ -10755,7 +10756,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "async-trait", "futures", @@ -10774,7 +10775,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "async-trait", "parity-scale-codec", @@ -10792,7 +10793,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "async-trait", "merlin", @@ -10815,7 +10816,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "parity-scale-codec", "scale-info", @@ -10829,7 +10830,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "parity-scale-codec", "scale-info", @@ -10842,7 +10843,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "base58", "bitflags", @@ -10888,7 +10889,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "blake2", "byteorder", @@ -10902,7 +10903,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "proc-macro2", "quote", @@ -10913,7 +10914,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10922,7 +10923,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "proc-macro2", "quote", @@ -10932,7 +10933,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "environmental", "parity-scale-codec", @@ -10943,7 +10944,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "finality-grandpa", "log", @@ -10961,7 +10962,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10975,7 +10976,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "futures", "hash-db", @@ -11000,7 +11001,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "lazy_static", "sp-core", @@ -11011,7 +11012,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "async-trait", "futures", @@ -11028,7 +11029,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "thiserror", "zstd", @@ -11037,7 +11038,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "log", "parity-scale-codec", @@ -11052,7 +11053,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "parity-scale-codec", "scale-info", @@ -11066,7 +11067,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "sp-api", "sp-core", @@ -11076,7 +11077,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "backtrace", "lazy_static", @@ -11086,7 +11087,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "rustc-hash", "serde", @@ -11096,7 +11097,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "either", "hash256-std-hasher", @@ -11118,7 +11119,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11135,7 +11136,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "Inflector", "proc-macro-crate", @@ -11147,7 +11148,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "log", "parity-scale-codec", @@ -11161,7 +11162,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "serde", "serde_json", @@ -11170,7 +11171,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "parity-scale-codec", "scale-info", @@ -11184,7 +11185,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "parity-scale-codec", "scale-info", @@ -11195,7 +11196,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "hash-db", "log", @@ -11217,12 +11218,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11235,7 +11236,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "log", "sp-core", @@ -11248,7 +11249,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "async-trait", "futures-timer", @@ -11264,7 +11265,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "parity-scale-codec", "sp-std", @@ -11276,7 +11277,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "sp-api", "sp-runtime", @@ -11285,7 +11286,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "async-trait", "log", @@ -11301,7 +11302,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "hash-db", "memory-db", @@ -11317,7 +11318,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11334,7 +11335,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11345,7 +11346,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "impl-trait-for-tuples", "log", @@ -11624,7 +11625,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "platforms", ] @@ -11632,7 +11633,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11653,7 +11654,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "futures-util", "hyper", @@ -11666,7 +11667,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "jsonrpsee", "log", @@ -11687,7 +11688,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "async-trait", "futures", @@ -11713,7 +11714,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11723,7 +11724,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11734,7 +11735,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "ansi_term", "build-helper", @@ -12110,11 +12111,11 @@ dependencies = [ [[package]] name = "tracing-core" -version = "0.1.26" +version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f54c8ca710e81886d498c2fd3331b56c93aa248d49de2222ad2742247c60072f" +checksum = "7b7358be39f2f274f322d2aaed611acc57f382e8eb1e5b48cb9ae30933495ce7" dependencies = [ - "lazy_static", + "once_cell", "valuable", ] @@ -12157,10 +12158,8 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" dependencies = [ - "ahash", "lazy_static", "log", - "lru 0.7.7", "tracing-core", ] @@ -12271,7 +12270,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9dad17f77b8a56ccf0d289ae410ee1e61d9b12a1" +source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" dependencies = [ "clap 3.2.12", "jsonrpsee", From 751f67b1163e1bee6fdad63de0c42a5768883eef Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Tue, 19 Jul 2022 14:13:26 +0200 Subject: [PATCH 4/4] cargo update -p polkadot-primitives Signed-off-by: Oliver Tale-Yazdi --- Cargo.lock | 139 +++++++++++++++++++++++++++-------------------------- 1 file changed, 70 insertions(+), 69 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 340d01159ee..f8674ad69e1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3801,7 +3801,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "beefy-primitives", "bitvec", @@ -3893,7 +3893,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "frame-support", "polkadot-primitives", @@ -5250,7 +5250,7 @@ checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a" [[package]] name = "orchestra" version = "0.0.1" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "async-trait", "dyn-clonable", @@ -5266,7 +5266,7 @@ dependencies = [ [[package]] name = "orchestra-proc-macro" version = "0.0.1" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "expander 0.0.6", "itertools", @@ -6286,7 +6286,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "frame-support", "frame-system", @@ -6304,7 +6304,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "frame-benchmarking", "frame-support", @@ -6857,7 +6857,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -6872,7 +6872,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -6886,7 +6886,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "derive_more", "fatality", @@ -6909,7 +6909,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "fatality", "futures", @@ -6930,7 +6930,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "clap 3.2.12", "frame-benchmarking-cli", @@ -6946,6 +6946,7 @@ dependencies = [ "sc-sysinfo", "sc-tracing", "sp-core", + "sp-keyring", "sp-trie", "substrate-build-script-utils", "thiserror", @@ -6955,7 +6956,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -6995,7 +6996,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "always-assert", "fatality", @@ -7016,7 +7017,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7029,7 +7030,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "derive_more", "fatality", @@ -7052,7 +7053,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7066,7 +7067,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "futures", "futures-timer", @@ -7086,7 +7087,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "always-assert", "async-trait", @@ -7109,7 +7110,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "futures", "parity-scale-codec", @@ -7127,7 +7128,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "bitvec", "derive_more", @@ -7156,7 +7157,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "bitvec", "futures", @@ -7176,7 +7177,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "bitvec", "fatality", @@ -7195,7 +7196,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7210,7 +7211,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "async-trait", "futures", @@ -7228,7 +7229,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7243,7 +7244,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "futures", "futures-timer", @@ -7260,7 +7261,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "fatality", "futures", @@ -7279,7 +7280,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "async-trait", "futures", @@ -7296,7 +7297,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "bitvec", "fatality", @@ -7314,7 +7315,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "always-assert", "assert_matches", @@ -7346,7 +7347,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "futures", "polkadot-node-primitives", @@ -7362,7 +7363,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "futures", "memory-lru", @@ -7379,7 +7380,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "async-std", "lazy_static", @@ -7397,7 +7398,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "bs58", "futures", @@ -7416,7 +7417,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "async-trait", "derive_more", @@ -7437,7 +7438,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "bounded-vec", "futures", @@ -7459,7 +7460,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7469,7 +7470,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "async-trait", "futures", @@ -7487,7 +7488,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "derive_more", "futures", @@ -7506,7 +7507,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "async-trait", "derive_more", @@ -7539,7 +7540,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "futures", "futures-timer", @@ -7561,7 +7562,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "derive_more", "frame-support", @@ -7656,7 +7657,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7671,7 +7672,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "bitvec", "frame-system", @@ -7701,7 +7702,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7733,7 +7734,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "beefy-primitives", "bitvec", @@ -7818,7 +7819,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "beefy-primitives", "bitvec", @@ -7865,7 +7866,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "frame-support", "polkadot-primitives", @@ -7877,7 +7878,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "bs58", "parity-scale-codec", @@ -7889,7 +7890,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "bitflags", "bitvec", @@ -7932,7 +7933,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "async-trait", "beefy-gadget", @@ -8035,7 +8036,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8056,7 +8057,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8066,7 +8067,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8091,7 +8092,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "beefy-primitives", "bitvec", @@ -8152,7 +8153,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "frame-benchmarking", "frame-system", @@ -8296,7 +8297,7 @@ dependencies = [ [[package]] name = "prioritized-metered-channel" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "coarsetime", "crossbeam-queue", @@ -8867,7 +8868,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -8936,7 +8937,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "frame-support", "polkadot-primitives", @@ -10568,7 +10569,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "enumn", "parity-scale-codec", @@ -11843,7 +11844,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "frame-support", "polkadot-primitives", @@ -12132,7 +12133,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12143,7 +12144,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12854,7 +12855,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "beefy-primitives", "bitvec", @@ -12942,7 +12943,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "frame-support", "polkadot-primitives", @@ -13226,7 +13227,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13240,7 +13241,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "frame-support", "frame-system", @@ -13260,7 +13261,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.26" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "frame-benchmarking", "frame-support", @@ -13278,7 +13279,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#81cd489111830b8a60aa991113f41187c5e94fdf" +source = "git+https://github.com/paritytech/polkadot?branch=master#9c64ccdf88921926a07225c50697179a99d7903d" dependencies = [ "Inflector", "proc-macro2",