From 28a541842e6bf094539e81214c16ee464158827c Mon Sep 17 00:00:00 2001 From: Michal Kucharczyk <1728078+michalkucharczyk@users.noreply.github.com> Date: Mon, 2 Jan 2023 13:32:51 +0100 Subject: [PATCH] BlockId removal: refactor: BlockBackend::block|block_status (#2041) * BlockId removal: refactor: BlockBackend::block|block_status It changes the arguments of: - `BlockBackend::block` - `BlockBackend::block_status` method from: `BlockId` to: `Block::Hash` This PR is part of BlockId::Number refactoring analysis (paritytech/substrate#11292) * update lockfile for {"polkadot", "substrate"} Co-authored-by: parity-processbot <> --- Cargo.lock | 573 +++++++++--------- client/collator/src/lib.rs | 2 +- .../common/src/parachain_consensus.rs | 9 +- client/consensus/common/src/tests.rs | 2 +- client/pov-recovery/src/lib.rs | 9 +- 5 files changed, 309 insertions(+), 286 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5882fc489f6..fea3121b0b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -18,7 +18,16 @@ version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b" dependencies = [ - "gimli", + "gimli 0.26.1", +] + +[[package]] +name = "addr2line" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" +dependencies = [ + "gimli 0.27.0", ] [[package]] @@ -381,16 +390,16 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "backtrace" -version = "0.3.64" +version = "0.3.67" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e121dee8023ce33ab248d9ce1493df03c3b38a659b240096fcbd7048ff9c31f" +checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca" dependencies = [ - "addr2line", + "addr2line 0.19.0", "cc", "cfg-if", "libc", - "miniz_oxide", - "object 0.27.1", + "miniz_oxide 0.6.2", + "object 0.30.0", "rustc-demangle", ] @@ -436,7 +445,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -470,7 +479,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "beefy-gadget", "futures", @@ -489,7 +498,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "sp-api", "sp-beefy", @@ -1349,7 +1358,7 @@ dependencies = [ "cranelift-codegen-shared", "cranelift-entity", "cranelift-isle", - "gimli", + "gimli 0.26.1", "log", "regalloc2", "smallvec", @@ -2916,7 +2925,7 @@ dependencies = [ "crc32fast", "libc", "libz-sys", - "miniz_oxide", + "miniz_oxide 0.4.4", ] [[package]] @@ -2937,7 +2946,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "parity-scale-codec", ] @@ -2960,7 +2969,7 @@ checksum = "85dcb89d2b10c5f6133de2efd8c11959ce9dbb46a2f7a4cab208c4eeda6ce1ab" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-support", "frame-system", @@ -2983,7 +2992,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "Inflector", "array-bytes 4.2.0", @@ -3030,7 +3039,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -3041,7 +3050,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -3058,7 +3067,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-support", "frame-system", @@ -3087,7 +3096,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "futures", "log", @@ -3103,7 +3112,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "bitflags", "frame-metadata", @@ -3135,7 +3144,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "Inflector", "cfg-expr", @@ -3149,7 +3158,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3161,7 +3170,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "proc-macro2", "quote", @@ -3171,7 +3180,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-support", "log", @@ -3189,7 +3198,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -3204,7 +3213,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "parity-scale-codec", "sp-api", @@ -3213,7 +3222,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-support", "parity-scale-codec", @@ -3453,6 +3462,12 @@ dependencies = [ "stable_deref_trait", ] +[[package]] +name = "gimli" +version = "0.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dec7af912d60cdbd3677c1af9352ebae6fb8394d165568a2234df0fa00f87793" + [[package]] name = "glob" version = "0.3.0" @@ -4095,7 +4110,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "bitvec", "frame-benchmarking", @@ -4192,7 +4207,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "frame-support", "polkadot-primitives", @@ -4921,6 +4936,15 @@ dependencies = [ "autocfg", ] +[[package]] +name = "miniz_oxide" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" +dependencies = [ + "adler", +] + [[package]] name = "mio" version = "0.8.4" @@ -4936,7 +4960,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "futures", "log", @@ -4955,7 +4979,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "anyhow", "jsonrpsee", @@ -5307,22 +5331,22 @@ dependencies = [ [[package]] name = "object" -version = "0.27.1" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67ac1d3f9a1d3616fd9a60c8d74296f22406a238b6a72f5cc1e6f314df4ffbf9" +checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" dependencies = [ + "crc32fast", + "hashbrown", + "indexmap", "memchr", ] [[package]] name = "object" -version = "0.29.0" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" +checksum = "239da7f290cfa979f43f85a8efeee9a8a76d0827c356d37f9d3d7254d6b537fb" dependencies = [ - "crc32fast", - "hashbrown", - "indexmap", "memchr", ] @@ -5406,7 +5430,7 @@ checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64" [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "array-bytes 4.2.0", "frame-benchmarking", @@ -5427,7 +5451,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -5445,7 +5469,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -5460,7 +5484,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-support", "frame-system", @@ -5476,7 +5500,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-support", "frame-system", @@ -5492,7 +5516,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-support", "frame-system", @@ -5507,7 +5531,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -5531,7 +5555,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5551,7 +5575,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -5566,7 +5590,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-support", "frame-system", @@ -5582,7 +5606,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "array-bytes 4.2.0", "beefy-merkle-tree", @@ -5605,7 +5629,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -5623,7 +5647,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -5667,7 +5691,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -5684,7 +5708,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "bitflags", "frame-benchmarking", @@ -5713,7 +5737,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "bitflags", "parity-scale-codec", @@ -5725,7 +5749,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "proc-macro2", "quote", @@ -5735,7 +5759,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5752,7 +5776,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -5770,7 +5794,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5793,7 +5817,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5806,7 +5830,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -5824,7 +5848,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5842,7 +5866,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -5865,7 +5889,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5881,7 +5905,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -5901,7 +5925,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -5918,7 +5942,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -5935,7 +5959,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -5952,7 +5976,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -5968,7 +5992,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -5984,7 +6008,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-support", "frame-system", @@ -6001,7 +6025,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6021,7 +6045,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "parity-scale-codec", "sp-api", @@ -6031,7 +6055,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-support", "frame-system", @@ -6048,7 +6072,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6071,7 +6095,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -6088,7 +6112,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -6103,7 +6127,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-support", "frame-system", @@ -6117,7 +6141,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -6135,7 +6159,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -6150,7 +6174,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6169,7 +6193,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -6186,7 +6210,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-support", "frame-system", @@ -6207,7 +6231,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -6223,7 +6247,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-support", "frame-system", @@ -6237,7 +6261,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6260,7 +6284,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6271,7 +6295,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "log", "sp-arithmetic", @@ -6280,7 +6304,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -6297,7 +6321,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-support", "frame-system", @@ -6326,7 +6350,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -6344,7 +6368,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -6363,7 +6387,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-support", "frame-system", @@ -6379,7 +6403,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6395,7 +6419,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6407,7 +6431,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -6424,7 +6448,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -6439,7 +6463,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -6455,7 +6479,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -6470,7 +6494,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-benchmarking", "frame-support", @@ -6485,7 +6509,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "frame-support", "frame-system", @@ -6503,7 +6527,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7018,7 +7042,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7033,7 +7057,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7047,7 +7071,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "derive_more", "fatality", @@ -7070,7 +7094,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "fatality", "futures", @@ -7091,7 +7115,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "clap 4.0.32", "frame-benchmarking-cli", @@ -7118,7 +7142,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "async-trait", "frame-benchmarking", @@ -7161,7 +7185,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "always-assert", "bitvec", @@ -7183,7 +7207,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "parity-scale-codec", "scale-info", @@ -7195,7 +7219,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "derive_more", "fatality", @@ -7220,7 +7244,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7234,7 +7258,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "futures", "futures-timer", @@ -7254,7 +7278,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "always-assert", "async-trait", @@ -7278,7 +7302,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "futures", "parity-scale-codec", @@ -7296,7 +7320,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "bitvec", "derive_more", @@ -7325,7 +7349,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "bitvec", "futures", @@ -7345,7 +7369,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "bitvec", "fatality", @@ -7364,7 +7388,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7379,7 +7403,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "async-trait", "futures", @@ -7398,7 +7422,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7413,7 +7437,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "futures", "futures-timer", @@ -7430,7 +7454,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "fatality", "futures", @@ -7449,7 +7473,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "async-trait", "futures", @@ -7466,7 +7490,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "bitvec", "fatality", @@ -7484,7 +7508,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "always-assert", "assert_matches", @@ -7517,7 +7541,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "futures", "polkadot-node-primitives", @@ -7533,7 +7557,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "futures", "lru", @@ -7548,7 +7572,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "lazy_static", "log", @@ -7566,7 +7590,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "bs58", "futures", @@ -7585,7 +7609,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "async-trait", "derive_more", @@ -7608,7 +7632,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "bounded-vec", "futures", @@ -7630,7 +7654,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7640,7 +7664,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "async-trait", "futures", @@ -7658,7 +7682,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "async-trait", "derive_more", @@ -7681,7 +7705,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "async-trait", "derive_more", @@ -7713,7 +7737,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "async-trait", "futures", @@ -7736,7 +7760,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "derive_more", "frame-support", @@ -7833,7 +7857,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7848,7 +7872,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "bitvec", "hex-literal", @@ -7874,7 +7898,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7906,7 +7930,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "bitvec", "frame-benchmarking", @@ -7995,7 +8019,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "bitvec", "frame-benchmarking", @@ -8043,7 +8067,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "frame-support", "polkadot-primitives", @@ -8057,7 +8081,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "bs58", "parity-scale-codec", @@ -8069,7 +8093,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "bitflags", "bitvec", @@ -8112,7 +8136,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "async-trait", "beefy-gadget", @@ -8219,7 +8243,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8240,7 +8264,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8250,7 +8274,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8275,7 +8299,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "bitvec", "frame-election-provider-support", @@ -8336,7 +8360,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "frame-benchmarking", "frame-system", @@ -9008,7 +9032,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "beefy-merkle-tree", "frame-benchmarking", @@ -9093,7 +9117,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "frame-support", "polkadot-primitives", @@ -9270,7 +9294,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "log", "sp-core", @@ -9281,7 +9305,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "async-trait", "futures", @@ -9308,7 +9332,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "futures", "futures-timer", @@ -9331,7 +9355,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9347,7 +9371,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -9362,7 +9386,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9373,7 +9397,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "array-bytes 4.2.0", "chrono", @@ -9413,7 +9437,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "fnv", "futures", @@ -9439,7 +9463,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "hash-db", "kvdb", @@ -9464,7 +9488,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "async-trait", "futures", @@ -9489,7 +9513,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "async-trait", "futures", @@ -9518,7 +9542,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "async-trait", "fork-tree", @@ -9556,7 +9580,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "futures", "jsonrpsee", @@ -9578,7 +9602,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9591,7 +9615,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "async-trait", "futures", @@ -9614,7 +9638,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "lru", "parity-scale-codec", @@ -9638,7 +9662,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -9651,7 +9675,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "log", "sc-allocator", @@ -9664,7 +9688,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "cfg-if", "libc", @@ -9681,7 +9705,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "ahash", "array-bytes 4.2.0", @@ -9721,7 +9745,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "finality-grandpa", "futures", @@ -9741,7 +9765,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "ansi_term", "futures", @@ -9756,7 +9780,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -9771,11 +9795,12 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "array-bytes 4.2.0", "async-trait", "asynchronous-codec", + "backtrace", "bytes", "either", "fnv", @@ -9812,7 +9837,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "cid", "futures", @@ -9831,7 +9856,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "async-trait", "bitflags", @@ -9857,7 +9882,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "ahash", "futures", @@ -9875,7 +9900,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "array-bytes 4.2.0", "futures", @@ -9896,7 +9921,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -9928,7 +9953,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "array-bytes 4.2.0", "futures", @@ -9938,6 +9963,7 @@ dependencies = [ "pin-project", "sc-network-common", "sc-peerset", + "sc-utils", "sp-consensus", "sp-runtime", "substrate-prometheus-endpoint", @@ -9946,7 +9972,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "array-bytes 4.2.0", "bytes", @@ -9976,7 +10002,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "futures", "libp2p", @@ -9989,7 +10015,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9998,7 +10024,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "futures", "jsonrpsee", @@ -10027,7 +10053,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10046,7 +10072,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "http", "jsonrpsee", @@ -10061,7 +10087,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "array-bytes 4.2.0", "futures", @@ -10087,7 +10113,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "async-trait", "directories", @@ -10152,7 +10178,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "log", "parity-scale-codec", @@ -10163,7 +10189,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10182,7 +10208,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "futures", "libc", @@ -10201,7 +10227,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "chrono", "futures", @@ -10210,6 +10236,7 @@ dependencies = [ "parking_lot 0.12.1", "pin-project", "rand 0.8.5", + "sc-utils", "serde", "serde_json", "thiserror", @@ -10219,7 +10246,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "ansi_term", "atty", @@ -10250,7 +10277,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10261,7 +10288,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "async-trait", "futures", @@ -10287,7 +10314,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "async-trait", "futures", @@ -10301,8 +10328,9 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ + "backtrace", "futures", "futures-timer", "lazy_static", @@ -10717,7 +10745,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "enumn", "parity-scale-codec", @@ -10794,7 +10822,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "hash-db", "log", @@ -10812,7 +10840,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "blake2", "proc-macro-crate", @@ -10824,7 +10852,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "parity-scale-codec", "scale-info", @@ -10837,7 +10865,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "integer-sqrt", "num-traits", @@ -10851,7 +10879,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "parity-scale-codec", "scale-info", @@ -10864,7 +10892,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "async-trait", "parity-scale-codec", @@ -10876,7 +10904,7 @@ dependencies = [ [[package]] name = "sp-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "parity-scale-codec", "scale-info", @@ -10893,7 +10921,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "parity-scale-codec", "sp-api", @@ -10905,7 +10933,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "futures", "log", @@ -10923,7 +10951,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "async-trait", "futures", @@ -10941,7 +10969,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "async-trait", "parity-scale-codec", @@ -10959,7 +10987,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "async-trait", "merlin", @@ -10982,7 +11010,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "parity-scale-codec", "scale-info", @@ -10994,7 +11022,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "parity-scale-codec", "scale-info", @@ -11007,7 +11035,7 @@ dependencies = [ [[package]] name = "sp-core" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "array-bytes 4.2.0", "base58", @@ -11049,7 +11077,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "blake2", "byteorder", @@ -11063,7 +11091,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "proc-macro2", "quote", @@ -11074,7 +11102,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11083,7 +11111,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "proc-macro2", "quote", @@ -11093,7 +11121,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "environmental", "parity-scale-codec", @@ -11104,7 +11132,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "finality-grandpa", "log", @@ -11122,7 +11150,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11136,7 +11164,7 @@ dependencies = [ [[package]] name = "sp-io" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "bytes", "ed25519", @@ -11161,7 +11189,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "lazy_static", "sp-core", @@ -11172,7 +11200,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "async-trait", "futures", @@ -11189,7 +11217,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "thiserror", "zstd", @@ -11198,7 +11226,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -11216,7 +11244,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "parity-scale-codec", "scale-info", @@ -11230,7 +11258,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "sp-api", "sp-core", @@ -11240,7 +11268,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "backtrace", "lazy_static", @@ -11250,7 +11278,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "rustc-hash", "serde", @@ -11260,7 +11288,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "either", "hash256-std-hasher", @@ -11282,7 +11310,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11300,7 +11328,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "Inflector", "proc-macro-crate", @@ -11312,7 +11340,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "serde", "serde_json", @@ -11321,7 +11349,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "parity-scale-codec", "scale-info", @@ -11335,7 +11363,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "parity-scale-codec", "scale-info", @@ -11347,7 +11375,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "hash-db", "log", @@ -11367,12 +11395,12 @@ dependencies = [ [[package]] name = "sp-std" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" [[package]] name = "sp-storage" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11385,7 +11413,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "async-trait", "futures-timer", @@ -11400,7 +11428,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "parity-scale-codec", "sp-std", @@ -11412,7 +11440,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "sp-api", "sp-runtime", @@ -11421,7 +11449,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "async-trait", "log", @@ -11437,7 +11465,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "ahash", "hash-db", @@ -11460,7 +11488,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11477,7 +11505,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11488,7 +11516,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "impl-trait-for-tuples", "log", @@ -11501,7 +11529,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "parity-scale-codec", "scale-info", @@ -11803,7 +11831,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "platforms", ] @@ -11811,7 +11839,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11830,7 +11858,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "hyper", "log", @@ -11842,7 +11870,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "async-trait", "jsonrpsee", @@ -11855,7 +11883,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "jsonrpsee", "log", @@ -11874,7 +11902,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -11900,7 +11928,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11910,7 +11938,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11921,7 +11949,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "ansi_term", "build-helper", @@ -12029,7 +12057,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "frame-support", "polkadot-primitives", @@ -12359,7 +12387,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12370,7 +12398,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12499,7 +12527,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91d91d167d37630de663ddc78e2dab38aabe573d" +source = "git+https://github.com/paritytech/substrate?branch=master#cbd8f1b56fd8ab9af0d9317432cc735264c89d70" dependencies = [ "clap 4.0.32", "frame-remote-externalities", @@ -12511,6 +12539,7 @@ dependencies = [ "sc-executor", "sc-service", "serde", + "serde_json", "sp-api", "sp-core", "sp-debug-derive", @@ -13017,7 +13046,7 @@ dependencies = [ "cranelift-frontend", "cranelift-native", "cranelift-wasm", - "gimli", + "gimli 0.26.1", "log", "object 0.29.0", "target-lexicon", @@ -13034,7 +13063,7 @@ checksum = "5c587c62e91c5499df62012b87b88890d0eb470b2ffecc5964e9da967b70c77c" dependencies = [ "anyhow", "cranelift-entity", - "gimli", + "gimli 0.26.1", "indexmap", "log", "object 0.29.0", @@ -13051,12 +13080,12 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "047839b5dabeae5424a078c19b8cc897e5943a7fadc69e3d888b9c9a897666b3" dependencies = [ - "addr2line", + "addr2line 0.17.0", "anyhow", "bincode", "cfg-if", "cpp_demangle", - "gimli", + "gimli 0.26.1", "log", "object 0.29.0", "rustc-demangle", @@ -13159,7 +13188,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "bitvec", "frame-benchmarking", @@ -13249,7 +13278,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "frame-support", "polkadot-primitives", @@ -13591,7 +13620,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13605,7 +13634,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "frame-support", "frame-system", @@ -13625,7 +13654,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "frame-benchmarking", "frame-support", @@ -13643,7 +13672,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.33" -source = "git+https://github.com/paritytech/polkadot?branch=master#49552dd8a23686bbe4205eada657e7f6816da95f" +source = "git+https://github.com/paritytech/polkadot?branch=master#6a5d31fcbdd3ac5dd880e0bf3616e303b5bb480f" dependencies = [ "Inflector", "proc-macro2", diff --git a/client/collator/src/lib.rs b/client/collator/src/lib.rs index 72b4896dab2..e31cb58573c 100644 --- a/client/collator/src/lib.rs +++ b/client/collator/src/lib.rs @@ -91,7 +91,7 @@ where /// /// Returns `true` if the block could be found and is good to be build on. fn check_block_status(&self, hash: Block::Hash, header: &Block::Header) -> bool { - match self.block_status.block_status(&BlockId::Hash(hash)) { + match self.block_status.block_status(hash) { Ok(BlockStatus::Queued) => { tracing::debug!( target: LOG_TARGET, diff --git a/client/consensus/common/src/parachain_consensus.rs b/client/consensus/common/src/parachain_consensus.rs index ffbbab5a200..721f2240bc5 100644 --- a/client/consensus/common/src/parachain_consensus.rs +++ b/client/consensus/common/src/parachain_consensus.rs @@ -21,10 +21,7 @@ use sc_client_api::{ use sc_consensus::{BlockImport, BlockImportParams, ForkChoiceStrategy}; use sp_blockchain::Error as ClientError; use sp_consensus::{BlockOrigin, BlockStatus}; -use sp_runtime::{ - generic::BlockId, - traits::{Block as BlockT, Header as HeaderT}, -}; +use sp_runtime::traits::{Block as BlockT, Header as HeaderT}; use cumulus_client_pov_recovery::{RecoveryDelay, RecoveryKind, RecoveryRequest}; use cumulus_relay_chain_interface::{RelayChainInterface, RelayChainResult}; @@ -283,7 +280,7 @@ async fn handle_new_block_imported( unset_best_header.hash() }; - match parachain.block_status(&BlockId::Hash(unset_hash)) { + match parachain.block_status(unset_hash) { Ok(BlockStatus::InChainWithState) => { drop(unset_best_header); let unset_best_header = unset_best_header_opt @@ -335,7 +332,7 @@ async fn handle_new_best_parachain_head( ) } else { // Make sure the block is already known or otherwise we skip setting new best. - match parachain.block_status(&BlockId::Hash(hash)) { + match parachain.block_status(hash) { Ok(BlockStatus::InChainWithState) => { unset_best_header.take(); diff --git a/client/consensus/common/src/tests.rs b/client/consensus/common/src/tests.rs index 92cecc37d29..9461b09d869 100644 --- a/client/consensus/common/src/tests.rs +++ b/client/consensus/common/src/tests.rs @@ -241,7 +241,7 @@ fn follow_new_best_with_dummy_recovery_works() { new_best_heads_sender.unbounded_send(block.header().clone()).unwrap(); loop { Delay::new(Duration::from_millis(100)).await; - match client.block_status(&BlockId::Hash(block.hash())).unwrap() { + match client.block_status(block.hash()).unwrap() { BlockStatus::Unknown => {}, status => { assert_eq!(block.hash(), client.usage_info().chain.best_hash); diff --git a/client/pov-recovery/src/lib.rs b/client/pov-recovery/src/lib.rs index 90c0a853214..78d78d027b7 100644 --- a/client/pov-recovery/src/lib.rs +++ b/client/pov-recovery/src/lib.rs @@ -44,10 +44,7 @@ use sc_client_api::{BlockBackend, BlockchainEvents, UsageProvider}; use sc_consensus::import_queue::{ImportQueueService, IncomingBlock}; use sp_consensus::{BlockOrigin, BlockStatus}; -use sp_runtime::{ - generic::BlockId, - traits::{Block as BlockT, Header as HeaderT, NumberFor}, -}; +use sp_runtime::traits::{Block as BlockT, Header as HeaderT, NumberFor}; use polkadot_node_primitives::{AvailableData, POV_BOMB_LIMIT}; use polkadot_overseer::Handle as OverseerHandle; @@ -303,7 +300,7 @@ where let parent = *block.header().parent_hash(); - match self.parachain_client.block_status(&BlockId::hash(parent)) { + match self.parachain_client.block_status(parent) { Ok(BlockStatus::Unknown) => { if self.active_candidate_recovery.is_being_recovered(&parent) { tracing::debug!( @@ -402,7 +399,7 @@ where }, }; - match self.parachain_client.block_status(&BlockId::Hash(hash)) { + match self.parachain_client.block_status(hash) { Ok(BlockStatus::Unknown) if !candidate.waiting_recovery => { candidate.waiting_recovery = true; to_recover.push(hash);