From e17ce228fed9513389c30be580d7da74bcc0734d Mon Sep 17 00:00:00 2001 From: Liu-Cheng Xu Date: Sat, 5 Mar 2022 01:37:28 +0800 Subject: [PATCH 1/2] Companion for Substrate#10915 --- bridges/fuzz/storage-proof/src/main.rs | 3 +-- bridges/primitives/runtime/src/storage_proof.rs | 3 +-- bridges/relays/client-substrate/src/client.rs | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/bridges/fuzz/storage-proof/src/main.rs b/bridges/fuzz/storage-proof/src/main.rs index 42636a65c3dc..9d9262908616 100644 --- a/bridges/fuzz/storage-proof/src/main.rs +++ b/bridges/fuzz/storage-proof/src/main.rs @@ -36,8 +36,7 @@ fn craft_known_storage_proof(input_vec: Vec<(Vec, Vec)>) -> (H256, Stora let vector_element_proof = StorageProof::new( prove_read(backend, input_vec.iter().map(|x| x.0.as_slice())) .unwrap() - .iter_nodes() - .collect(), + .iter_nodes(), ); (root, vector_element_proof) } diff --git a/bridges/primitives/runtime/src/storage_proof.rs b/bridges/primitives/runtime/src/storage_proof.rs index 177b0f8664e4..4a99ab6210f4 100644 --- a/bridges/primitives/runtime/src/storage_proof.rs +++ b/bridges/primitives/runtime/src/storage_proof.rs @@ -88,8 +88,7 @@ pub fn craft_valid_storage_proof() -> (sp_core::H256, StorageProof) { let proof = StorageProof::new( prove_read(backend, &[&b"key1"[..], &b"key2"[..], &b"key22"[..]]) .unwrap() - .iter_nodes() - .collect(), + .iter_nodes(), ); (root, proof) diff --git a/bridges/relays/client-substrate/src/client.rs b/bridges/relays/client-substrate/src/client.rs index 1902875c9381..67bb5c1ad9ae 100644 --- a/bridges/relays/client-substrate/src/client.rs +++ b/bridges/relays/client-substrate/src/client.rs @@ -496,7 +496,7 @@ impl Client { self.jsonrpsee_execute(move |client| async move { Substrate::::state_prove_storage(&*client, keys, Some(at_block)) .await - .map(|proof| StorageProof::new(proof.proof.into_iter().map(|b| b.0).collect())) + .map(|proof| StorageProof::new(proof.proof.into_iter().map(|b| b.0))) .map_err(Into::into) }) .await From aaab9668c52cb72a6a6d6be3fe5ca11c49f2380f Mon Sep 17 00:00:00 2001 From: parity-processbot <> Date: Sat, 5 Mar 2022 07:51:31 +0000 Subject: [PATCH 2/2] update lockfile for {"substrate"} --- Cargo.lock | 326 +++++++++++++++++++++++++++-------------------------- 1 file changed, 164 insertions(+), 162 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5d8b4bd82593..ad0af5cf02b7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -450,11 +450,12 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "beefy-primitives", "fnv", "futures 0.3.21", + "hex", "log", "parity-scale-codec", "parking_lot 0.12.0", @@ -479,7 +480,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -502,12 +503,12 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "parity-scale-codec", "scale-info", @@ -2062,7 +2063,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "parity-scale-codec", ] @@ -2080,7 +2081,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-support", "frame-system", @@ -2102,7 +2103,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "Inflector", "chrono", @@ -2143,7 +2144,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-support", "frame-system", @@ -2157,7 +2158,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-support", "frame-system", @@ -2185,7 +2186,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "bitflags", "frame-metadata", @@ -2214,7 +2215,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2226,7 +2227,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 1.1.3", @@ -2238,7 +2239,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "proc-macro2", "quote", @@ -2248,7 +2249,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2271,7 +2272,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-support", "frame-system", @@ -2282,7 +2283,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-support", "log", @@ -2299,7 +2300,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -2314,7 +2315,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "parity-scale-codec", "sp-api", @@ -2323,7 +2324,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-support", "sp-api", @@ -2519,7 +2520,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "chrono", "frame-election-provider-support", @@ -4974,7 +4975,7 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -4988,7 +4989,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-support", "frame-system", @@ -5004,7 +5005,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-support", "frame-system", @@ -5019,7 +5020,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -5043,7 +5044,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5063,7 +5064,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-election-provider-support", "frame-support", @@ -5083,7 +5084,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -5098,7 +5099,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "beefy-primitives", "frame-support", @@ -5114,7 +5115,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -5139,7 +5140,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -5223,7 +5224,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -5240,7 +5241,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -5256,7 +5257,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5279,7 +5280,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -5297,7 +5298,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -5312,7 +5313,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -5335,7 +5336,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5351,7 +5352,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -5371,7 +5372,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -5388,7 +5389,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -5405,7 +5406,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5423,7 +5424,7 @@ dependencies = [ [[package]] name = "pallet-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-support", "frame-system", @@ -5439,7 +5440,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5456,7 +5457,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -5471,7 +5472,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-support", "frame-system", @@ -5485,7 +5486,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-support", "frame-system", @@ -5502,7 +5503,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5525,7 +5526,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -5541,7 +5542,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -5556,7 +5557,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-support", "frame-system", @@ -5570,7 +5571,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -5586,7 +5587,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-support", "frame-system", @@ -5607,7 +5608,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -5623,7 +5624,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-support", "frame-system", @@ -5637,7 +5638,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5660,7 +5661,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -5671,7 +5672,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "log", "sp-arithmetic", @@ -5680,7 +5681,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-support", "frame-system", @@ -5694,7 +5695,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -5712,7 +5713,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -5731,7 +5732,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-support", "frame-system", @@ -5748,7 +5749,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5765,7 +5766,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5776,7 +5777,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -5793,7 +5794,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -5809,7 +5810,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-benchmarking", "frame-support", @@ -8270,7 +8271,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "env_logger 0.9.0", "jsonrpsee 0.8.0", @@ -8617,7 +8618,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "log", "sp-core", @@ -8628,7 +8629,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "async-trait", "futures 0.3.21", @@ -8655,7 +8656,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "futures 0.3.21", "futures-timer", @@ -8678,7 +8679,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8694,7 +8695,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -8711,7 +8712,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -8722,7 +8723,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "chrono", "clap", @@ -8760,7 +8761,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "fnv", "futures 0.3.21", @@ -8788,7 +8789,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "hash-db", "kvdb", @@ -8813,7 +8814,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "async-trait", "futures 0.3.21", @@ -8837,7 +8838,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "async-trait", "fork-tree", @@ -8880,7 +8881,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -8904,7 +8905,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8917,7 +8918,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "async-trait", "futures 0.3.21", @@ -8942,7 +8943,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "sc-client-api", "sp-authorship", @@ -8953,7 +8954,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "lazy_static", "lru 0.6.6", @@ -8980,7 +8981,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "environmental", "parity-scale-codec", @@ -8997,7 +8998,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "log", "parity-scale-codec", @@ -9013,7 +9014,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9031,7 +9032,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "ahash", "async-trait", @@ -9040,6 +9041,7 @@ dependencies = [ "fork-tree", "futures 0.3.21", "futures-timer", + "hex", "log", "parity-scale-codec", "parking_lot 0.12.0", @@ -9070,7 +9072,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "finality-grandpa", "futures 0.3.21", @@ -9094,7 +9096,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "ansi_term", "futures 0.3.21", @@ -9111,7 +9113,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "async-trait", "hex", @@ -9126,7 +9128,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "async-trait", "asynchronous-codec 0.5.0", @@ -9175,7 +9177,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "ahash", "futures 0.3.21", @@ -9192,7 +9194,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "bytes 1.1.0", "fnv", @@ -9220,7 +9222,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "futures 0.3.21", "libp2p", @@ -9233,7 +9235,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9242,7 +9244,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "futures 0.3.21", "hash-db", @@ -9273,7 +9275,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -9298,7 +9300,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -9315,7 +9317,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "async-trait", "directories", @@ -9379,7 +9381,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "log", "parity-scale-codec", @@ -9393,7 +9395,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -9414,7 +9416,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "chrono", "futures 0.3.21", @@ -9432,7 +9434,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "ansi_term", "atty", @@ -9463,7 +9465,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -9474,7 +9476,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9501,7 +9503,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "futures 0.3.21", "log", @@ -9514,7 +9516,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "futures 0.3.21", "futures-timer", @@ -10018,7 +10020,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "hash-db", "log", @@ -10035,7 +10037,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "blake2 0.10.2", "proc-macro-crate 1.1.3", @@ -10047,7 +10049,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "parity-scale-codec", "scale-info", @@ -10060,7 +10062,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "integer-sqrt", "num-traits", @@ -10075,7 +10077,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "parity-scale-codec", "scale-info", @@ -10088,7 +10090,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "async-trait", "parity-scale-codec", @@ -10100,7 +10102,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "parity-scale-codec", "sp-api", @@ -10112,7 +10114,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "futures 0.3.21", "log", @@ -10130,7 +10132,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "async-trait", "futures 0.3.21", @@ -10149,7 +10151,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "async-trait", "merlin", @@ -10172,7 +10174,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "parity-scale-codec", "scale-info", @@ -10186,7 +10188,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -10198,7 +10200,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "base58", "bitflags", @@ -10244,7 +10246,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "blake2 0.10.2", "byteorder", @@ -10258,7 +10260,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "proc-macro2", "quote", @@ -10269,7 +10271,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "kvdb", "parking_lot 0.12.0", @@ -10278,7 +10280,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "proc-macro2", "quote", @@ -10288,7 +10290,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "environmental", "parity-scale-codec", @@ -10299,7 +10301,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "finality-grandpa", "log", @@ -10317,7 +10319,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10331,7 +10333,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "futures 0.3.21", "hash-db", @@ -10356,7 +10358,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "lazy_static", "sp-core", @@ -10367,7 +10369,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "async-trait", "futures 0.3.21", @@ -10384,7 +10386,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "thiserror", "zstd", @@ -10393,7 +10395,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "parity-scale-codec", "scale-info", @@ -10408,7 +10410,7 @@ dependencies = [ [[package]] name = "sp-npos-elections-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -10419,7 +10421,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "sp-api", "sp-core", @@ -10429,7 +10431,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "backtrace", "lazy_static", @@ -10439,7 +10441,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "rustc-hash", "serde", @@ -10449,7 +10451,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "either", "hash256-std-hasher", @@ -10471,7 +10473,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10488,7 +10490,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "Inflector", "proc-macro-crate 1.1.3", @@ -10500,7 +10502,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "serde", "serde_json", @@ -10509,7 +10511,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "parity-scale-codec", "scale-info", @@ -10523,7 +10525,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "parity-scale-codec", "scale-info", @@ -10534,7 +10536,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "hash-db", "log", @@ -10557,12 +10559,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10575,7 +10577,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "log", "sp-core", @@ -10588,7 +10590,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "async-trait", "futures-timer", @@ -10604,7 +10606,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "parity-scale-codec", "sp-std", @@ -10616,7 +10618,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "sp-api", "sp-runtime", @@ -10625,7 +10627,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "async-trait", "log", @@ -10641,7 +10643,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "hash-db", "memory-db", @@ -10657,7 +10659,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10674,7 +10676,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10685,7 +10687,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "impl-trait-for-tuples", "log", @@ -10886,7 +10888,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "platforms", ] @@ -10894,7 +10896,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.21", @@ -10916,7 +10918,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "futures-util", "hyper", @@ -10929,7 +10931,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "async-trait", "futures 0.3.21", @@ -10955,7 +10957,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "futures 0.3.21", "substrate-test-utils-derive", @@ -10965,7 +10967,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -10976,7 +10978,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "ansi_term", "build-helper", @@ -11635,7 +11637,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#9b5e654074655737ac041d059d88bfd68593b069" +source = "git+https://github.com/paritytech/substrate?branch=master#32a4fe01f110a755bf22eb8f803cdfd7052d4f8b" dependencies = [ "clap", "jsonrpsee 0.4.1",