From c6f1f46e9f5543079cf2de0361d70ba401c29af8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Oct 2022 22:49:55 +0200 Subject: [PATCH 01/48] Bump thiserror from 1.0.35 to 1.0.37 (#1704) Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.35 to 1.0.37. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.35...1.0.37) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 8 ++++---- client/relay-chain-interface/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 17b6139822..7f1315eb52 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -12075,18 +12075,18 @@ checksum = "949517c0cf1bf4ee812e2e07e08ab448e3ae0d23472aee8a06c985f0c8815b16" [[package]] name = "thiserror" -version = "1.0.35" +version = "1.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c53f98874615aea268107765aa1ed8f6116782501d18e53d08b471733bea6c85" +checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.35" +version = "1.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8b463991b4eab2d801e724172285ec4195c650e8ec79b149e6c2a8e6dd3f783" +checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb" dependencies = [ "proc-macro2", "quote", diff --git a/client/relay-chain-interface/Cargo.toml b/client/relay-chain-interface/Cargo.toml index 8dd6771f20..a6ba721fbe 100644 --- a/client/relay-chain-interface/Cargo.toml +++ b/client/relay-chain-interface/Cargo.toml @@ -17,6 +17,6 @@ sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "mas futures = "0.3.24" async-trait = "0.1.57" -thiserror = "1.0.35" +thiserror = "1.0.37" jsonrpsee-core = "0.15.1" parity-scale-codec = "3.2.1" From 558af3e0632bce612e48f6ec148da48ea31cf5c1 Mon Sep 17 00:00:00 2001 From: Wilfried Kopp Date: Tue, 4 Oct 2022 18:18:26 +0200 Subject: [PATCH 02/48] Fix target of some Matrix notifications --- .github/workflows/release-10_rc-automation.yml | 10 ++++++++-- .github/workflows/release-30_create-draft.yml | 12 +++++++++--- .github/workflows/release-99_bot-announce.yml | 4 ++-- 3 files changed, 19 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release-10_rc-automation.yml b/.github/workflows/release-10_rc-automation.yml index 740b1860e1..1357df0c53 100644 --- a/.github/workflows/release-10_rc-automation.yml +++ b/.github/workflows/release-10_rc-automation.yml @@ -9,6 +9,12 @@ on: jobs: tag_rc: runs-on: ubuntu-latest + strategy: + matrix: + channel: + - name: 'Cumulus Release Coordination' + room: '!ZrLPsivsytpkdJfVaa:matrix.parity.io' + pre-releases: true steps: - name: Checkout sources uses: actions/checkout@v3 @@ -67,11 +73,11 @@ jobs: assignees: release-engineering filename: .github/ISSUE_TEMPLATE/release-runtime.md - - name: Send Matrix message + - name: Matrix notification to ${{ matrix.channel.name }} uses: s3krit/matrix-message-action@70ad3fb812ee0e45ff8999d6af11cafad11a6ecf # v0.0.3 if: steps.create-issue-checklist-client.outputs.url != '' && steps.create-issue-checklist-runtime.outputs.url != '' with: - room_id: ${{ secrets.INTERNAL_CUMULUS_MATRIX_ROOM_ID }} + room_id: ${{ matrix.channel.room }} access_token: ${{ secrets.MATRIX_ACCESS_TOKEN }} server: "matrix.parity.io" message: | diff --git a/.github/workflows/release-30_create-draft.yml b/.github/workflows/release-30_create-draft.yml index 2869aa5344..68d0a38352 100644 --- a/.github/workflows/release-30_create-draft.yml +++ b/.github/workflows/release-30_create-draft.yml @@ -271,11 +271,17 @@ jobs: if: ${{ github.event.inputs.notification == 'true' }} runs-on: ubuntu-latest needs: publish-draft-release + strategy: + matrix: + channel: + - name: 'Cumulus Release Coordination' + room: '!ZrLPsivsytpkdJfVaa:matrix.parity.io' + pre-releases: true steps: - - name: Internal polkadot channel - uses: s3krit/matrix-message-action@v0.0.3 + - name: Matrix notification to ${{ matrix.channel.name }} + uses: s3krit/matrix-message-action@70ad3fb812ee0e45ff8999d6af11cafad11a6ecf # v0.0.3 with: - room_id: ${{ secrets.INTERNAL_CUMULUS_MATRIX_ROOM_ID }} + room_id: ${{ matrix.channel.room }} access_token: ${{ secrets.MATRIX_ACCESS_TOKEN }} message: | **New draft for ${{ github.repository }}**: ${{ github.event.inputs.ref2 }}
diff --git a/.github/workflows/release-99_bot-announce.yml b/.github/workflows/release-99_bot-announce.yml index 4a12bdb1fd..155b4500c0 100644 --- a/.github/workflows/release-99_bot-announce.yml +++ b/.github/workflows/release-99_bot-announce.yml @@ -18,8 +18,8 @@ jobs: pre-release: true steps: - - name: send message - uses: s3krit/matrix-message-action@v0.0.3 + - name: Matrix notification to ${{ matrix.channel.name }} + uses: s3krit/matrix-message-action@70ad3fb812ee0e45ff8999d6af11cafad11a6ecf # v0.0.3 with: room_id: ${{ matrix.channel.room }} access_token: ${{ secrets.MATRIX_ACCESS_TOKEN }} From c06dea341adb71f528590252c125ca6ccd992b62 Mon Sep 17 00:00:00 2001 From: Chevdor Date: Wed, 5 Oct 2022 13:01:58 +0200 Subject: [PATCH 03/48] fmt (#1731) --- parachain-template/runtime/src/lib.rs | 3 ++- parachains/common/src/lib.rs | 3 ++- parachains/runtimes/starters/seedling/src/lib.rs | 3 ++- parachains/runtimes/starters/shell/src/lib.rs | 3 ++- parachains/runtimes/testing/penpal/src/lib.rs | 3 ++- parachains/runtimes/testing/rococo-parachain/src/lib.rs | 3 ++- test/runtime/src/lib.rs | 3 ++- 7 files changed, 14 insertions(+), 7 deletions(-) diff --git a/parachain-template/runtime/src/lib.rs b/parachain-template/runtime/src/lib.rs index 3ad6a055e8..a52b498263 100644 --- a/parachain-template/runtime/src/lib.rs +++ b/parachain-template/runtime/src/lib.rs @@ -217,7 +217,8 @@ const AVERAGE_ON_INITIALIZE_RATIO: Perbill = Perbill::from_percent(5); const NORMAL_DISPATCH_RATIO: Perbill = Perbill::from_percent(75); /// We allow for 0.5 of a second of compute with a 12 second average block time. -const MAXIMUM_BLOCK_WEIGHT: Weight = WEIGHT_PER_SECOND.saturating_div(2) +const MAXIMUM_BLOCK_WEIGHT: Weight = WEIGHT_PER_SECOND + .saturating_div(2) .set_proof_size(cumulus_primitives_core::relay_chain::v2::MAX_POV_SIZE as u64); /// The version information used to identify this runtime when compiled natively. diff --git a/parachains/common/src/lib.rs b/parachains/common/src/lib.rs index 1ad4dc2f85..c192d6e2a7 100644 --- a/parachains/common/src/lib.rs +++ b/parachains/common/src/lib.rs @@ -92,7 +92,8 @@ mod constants { pub const NORMAL_DISPATCH_RATIO: Perbill = Perbill::from_percent(75); /// We allow for 0.5 seconds of compute with a 6 second average block time. - pub const MAXIMUM_BLOCK_WEIGHT: Weight = WEIGHT_PER_SECOND.saturating_div(2) + pub const MAXIMUM_BLOCK_WEIGHT: Weight = WEIGHT_PER_SECOND + .saturating_div(2) .set_proof_size(polkadot_primitives::v2::MAX_POV_SIZE as u64); } diff --git a/parachains/runtimes/starters/seedling/src/lib.rs b/parachains/runtimes/starters/seedling/src/lib.rs index 84327c4dc7..67cc9dede2 100644 --- a/parachains/runtimes/starters/seedling/src/lib.rs +++ b/parachains/runtimes/starters/seedling/src/lib.rs @@ -85,7 +85,8 @@ const AVERAGE_ON_INITIALIZE_RATIO: Perbill = Perbill::from_percent(10); /// by Operational extrinsics. const NORMAL_DISPATCH_RATIO: Perbill = Perbill::from_percent(75); /// We allow for .5 seconds of compute with a 12 second average block time. -const MAXIMUM_BLOCK_WEIGHT: Weight = WEIGHT_PER_SECOND.saturating_div(2) +const MAXIMUM_BLOCK_WEIGHT: Weight = WEIGHT_PER_SECOND + .saturating_div(2) .set_proof_size(cumulus_primitives_core::relay_chain::v2::MAX_POV_SIZE as u64); parameter_types! { diff --git a/parachains/runtimes/starters/shell/src/lib.rs b/parachains/runtimes/starters/shell/src/lib.rs index 4eefd1befa..2d91a0c015 100644 --- a/parachains/runtimes/starters/shell/src/lib.rs +++ b/parachains/runtimes/starters/shell/src/lib.rs @@ -92,7 +92,8 @@ const AVERAGE_ON_INITIALIZE_RATIO: Perbill = Perbill::from_percent(10); /// by Operational extrinsics. const NORMAL_DISPATCH_RATIO: Perbill = Perbill::from_percent(75); /// We allow for .5 seconds of compute with a 12 second average block time. -const MAXIMUM_BLOCK_WEIGHT: Weight = WEIGHT_PER_SECOND.saturating_div(2) +const MAXIMUM_BLOCK_WEIGHT: Weight = WEIGHT_PER_SECOND + .saturating_div(2) .set_proof_size(cumulus_primitives_core::relay_chain::v2::MAX_POV_SIZE as u64); parameter_types! { diff --git a/parachains/runtimes/testing/penpal/src/lib.rs b/parachains/runtimes/testing/penpal/src/lib.rs index 0a18f70f0f..dddb71773f 100644 --- a/parachains/runtimes/testing/penpal/src/lib.rs +++ b/parachains/runtimes/testing/penpal/src/lib.rs @@ -230,7 +230,8 @@ const AVERAGE_ON_INITIALIZE_RATIO: Perbill = Perbill::from_percent(5); const NORMAL_DISPATCH_RATIO: Perbill = Perbill::from_percent(75); /// We allow for 0.5 of a second of compute with a 12 second average block time. -const MAXIMUM_BLOCK_WEIGHT: Weight = WEIGHT_PER_SECOND.saturating_div(2) +const MAXIMUM_BLOCK_WEIGHT: Weight = WEIGHT_PER_SECOND + .saturating_div(2) .set_proof_size(cumulus_primitives_core::relay_chain::v2::MAX_POV_SIZE as u64); /// The version information used to identify this runtime when compiled natively. diff --git a/parachains/runtimes/testing/rococo-parachain/src/lib.rs b/parachains/runtimes/testing/rococo-parachain/src/lib.rs index ec6a08b0b4..21d784aae6 100644 --- a/parachains/runtimes/testing/rococo-parachain/src/lib.rs +++ b/parachains/runtimes/testing/rococo-parachain/src/lib.rs @@ -134,7 +134,8 @@ const AVERAGE_ON_INITIALIZE_RATIO: Perbill = Perbill::from_percent(10); /// by Operational extrinsics. const NORMAL_DISPATCH_RATIO: Perbill = Perbill::from_percent(75); /// We allow for .5 seconds of compute with a 12 second average block time. -const MAXIMUM_BLOCK_WEIGHT: Weight = WEIGHT_PER_SECOND.saturating_div(2) +const MAXIMUM_BLOCK_WEIGHT: Weight = WEIGHT_PER_SECOND + .saturating_div(2) .set_proof_size(cumulus_primitives_core::relay_chain::v2::MAX_POV_SIZE as u64); parameter_types! { diff --git a/test/runtime/src/lib.rs b/test/runtime/src/lib.rs index 4ac173efef..786590b8b9 100644 --- a/test/runtime/src/lib.rs +++ b/test/runtime/src/lib.rs @@ -140,7 +140,8 @@ const AVERAGE_ON_INITIALIZE_RATIO: Perbill = Perbill::from_percent(10); /// by Operational extrinsics. const NORMAL_DISPATCH_RATIO: Perbill = Perbill::from_percent(75); /// We allow for .5 seconds of compute with a 12 second average block time. -const MAXIMUM_BLOCK_WEIGHT: Weight = WEIGHT_PER_SECOND.saturating_div(2) +const MAXIMUM_BLOCK_WEIGHT: Weight = WEIGHT_PER_SECOND + .saturating_div(2) .set_proof_size(cumulus_primitives_core::relay_chain::v2::MAX_POV_SIZE as u64); parameter_types! { From 4635068280868158110a9cd122cab14d293b4044 Mon Sep 17 00:00:00 2001 From: Alexander Samusev <41779041+alvicsam@users.noreply.github.com> Date: Wed, 5 Oct 2022 14:39:41 +0200 Subject: [PATCH 04/48] [ci] add fmt check (#1733) * [ci] add fmt check * fix name * remove gha from branches --- .github/workflows/fmt-check.yml | 37 +++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/fmt-check.yml diff --git a/.github/workflows/fmt-check.yml b/.github/workflows/fmt-check.yml new file mode 100644 index 0000000000..844dda46b8 --- /dev/null +++ b/.github/workflows/fmt-check.yml @@ -0,0 +1,37 @@ +name: Rustfmt check + +on: + pull_request: + types: [opened, synchronize, reopened, ready_for_review] + +jobs: + quick_check: + strategy: + matrix: + os: ["ubuntu-latest"] + runs-on: ${{ matrix.os }} + steps: + - name: Install Rust nightly toolchain + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: nightly + override: true + components: clippy, rustfmt + + - name: Cache Dependencies & Build Outputs + uses: actions/cache@v3 + with: + path: | + ~/.cargo/registry + ~/.cargo/git + target + key: ${{ runner.os }}-${{ matrix.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} + + - uses: actions/checkout@v3 + + - name: Cargo fmt + uses: actions-rs/cargo@v1 + with: + command: fmt + args: --all -- --check From 95b8a21c910fcdff43d50fdd4255f86a65d745b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Thei=C3=9Fen?= Date: Wed, 5 Oct 2022 15:59:26 +0200 Subject: [PATCH 05/48] Companion for contracts WeightV2 (#1726) * Remove `ContractAccessWeight` * update lockfile for {"polkadot", "substrate"} * update lockfile for {"substrate", "polkadot"} Co-authored-by: parity-processbot <> --- Cargo.lock | 622 ++++++++++-------- .../contracts-rococo/src/contracts.rs | 3 +- 2 files changed, 352 insertions(+), 273 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7f1315eb52..675a857bb7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,16 +526,17 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "beefy-primitives", "sp-api", + "sp-runtime", ] [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "scale-info", @@ -588,9 +589,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitvec" -version = "1.0.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1489fcb93a5bb47da0462ca93ad252ad6af2145cce58d10d46a83931ba9f016b" +checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" dependencies = [ "funty", "radium", @@ -2747,7 +2748,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", ] @@ -2764,7 +2765,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -2787,7 +2788,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "Inflector", "array-bytes", @@ -2838,7 +2839,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2849,7 +2850,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2865,7 +2866,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -2894,7 +2895,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "bitflags", "frame-metadata", @@ -2926,7 +2927,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "Inflector", "cfg-expr", @@ -2940,7 +2941,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2952,7 +2953,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "proc-macro2", "quote", @@ -2962,7 +2963,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "log", @@ -2980,7 +2981,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -2995,7 +2996,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "sp-api", @@ -3004,7 +3005,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "parity-scale-codec", @@ -3883,7 +3884,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "beefy-primitives", "bitvec", @@ -3906,6 +3907,7 @@ dependencies = [ "pallet-bounties", "pallet-child-bounties", "pallet-collective", + "pallet-conviction-voting", "pallet-democracy", "pallet-election-provider-multi-phase", "pallet-election-provider-support-benchmarking", @@ -3925,7 +3927,9 @@ dependencies = [ "pallet-offences-benchmarking", "pallet-preimage", "pallet-proxy", + "pallet-ranked-collective", "pallet-recovery", + "pallet-referenda", "pallet-scheduler", "pallet-session", "pallet-session-benchmarking", @@ -3939,6 +3943,7 @@ dependencies = [ "pallet-treasury", "pallet-utility", "pallet-vesting", + "pallet-whitelist", "pallet-xcm", "pallet-xcm-benchmarks", "parity-scale-codec", @@ -3977,7 +3982,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "frame-support", "polkadot-primitives", @@ -5315,8 +5320,9 @@ checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a" [[package]] name = "orchestra" -version = "0.0.1" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +version = "0.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0aab54694ddaa8a9b703724c6ef04272b2d27bc32d2c855aae5cdd1857216b43" dependencies = [ "async-trait", "dyn-clonable", @@ -5331,8 +5337,9 @@ dependencies = [ [[package]] name = "orchestra-proc-macro" -version = "0.0.1" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +version = "0.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a702b2f6bf592b3eb06c00d80d05afaf7a8eff6b41bb361e397d799acc21b45a" dependencies = [ "expander 0.0.6", "itertools", @@ -5370,7 +5377,7 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5391,7 +5398,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -5408,7 +5415,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5422,7 +5429,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -5438,7 +5445,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -5454,7 +5461,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -5469,7 +5476,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5493,7 +5500,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5513,7 +5520,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5528,7 +5535,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "beefy-primitives", "frame-support", @@ -5544,7 +5551,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5567,7 +5574,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5585,7 +5592,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5629,7 +5636,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5646,7 +5653,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "bitflags", "frame-benchmarking", @@ -5674,18 +5681,19 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "bitflags", "parity-scale-codec", "sp-runtime", "sp-std", + "sp-weights", ] [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "proc-macro2", "quote", @@ -5695,7 +5703,7 @@ dependencies = [ [[package]] name = "pallet-contracts-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "pallet-contracts-primitives", "parity-scale-codec", @@ -5705,10 +5713,27 @@ dependencies = [ "sp-std", ] +[[package]] +name = "pallet-conviction-voting" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +dependencies = [ + "assert_matches", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "serde", + "sp-io", + "sp-runtime", + "sp-std", +] + [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5724,7 +5749,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5748,7 +5773,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5761,7 +5786,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5779,7 +5804,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5800,7 +5825,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5815,7 +5840,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5838,7 +5863,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5854,7 +5879,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5874,7 +5899,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5891,7 +5916,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5908,7 +5933,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5926,7 +5951,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5941,7 +5966,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -5956,7 +5981,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -5973,7 +5998,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5993,7 +6018,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "sp-api", @@ -6003,7 +6028,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -6020,7 +6045,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6043,7 +6068,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6059,7 +6084,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6074,7 +6099,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -6085,10 +6110,28 @@ dependencies = [ "sp-std", ] +[[package]] +name = "pallet-ranked-collective" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", +] + [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6100,10 +6143,28 @@ dependencies = [ "sp-std", ] +[[package]] +name = "pallet-referenda" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +dependencies = [ + "assert_matches", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "serde", + "sp-arithmetic", + "sp-io", + "sp-runtime", + "sp-std", +] + [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6119,7 +6180,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -6140,7 +6201,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6156,7 +6217,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -6170,7 +6231,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6193,7 +6254,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6204,7 +6265,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "log", "sp-arithmetic", @@ -6213,7 +6274,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -6242,7 +6303,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6260,7 +6321,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6279,7 +6340,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-support", "frame-system", @@ -6295,7 +6356,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6310,7 +6371,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6321,7 +6382,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6338,7 +6399,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6353,7 +6414,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6369,7 +6430,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-benchmarking", "frame-support", @@ -6381,10 +6442,25 @@ dependencies = [ "sp-std", ] +[[package]] +name = "pallet-whitelist" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-api", + "sp-runtime", + "sp-std", +] + [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "frame-support", "frame-system", @@ -6402,7 +6478,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "frame-benchmarking", "frame-support", @@ -6955,7 +7031,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -6970,7 +7046,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -6984,12 +7060,12 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "derive_more", "fatality", "futures", - "lru 0.7.7", + "lru 0.8.0", "parity-scale-codec", "polkadot-erasure-coding", "polkadot-node-network-protocol", @@ -7007,11 +7083,11 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "fatality", "futures", - "lru 0.7.7", + "lru 0.8.0", "parity-scale-codec", "polkadot-erasure-coding", "polkadot-node-network-protocol", @@ -7028,7 +7104,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "clap", "frame-benchmarking-cli", @@ -7054,7 +7130,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7095,9 +7171,10 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "always-assert", + "bitvec", "fatality", "futures", "futures-timer", @@ -7116,7 +7193,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7129,12 +7206,14 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "derive_more", "fatality", "futures", - "lru 0.7.7", + "futures-timer", + "indexmap", + "lru 0.8.0", "parity-scale-codec", "polkadot-erasure-coding", "polkadot-node-network-protocol", @@ -7152,7 +7231,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7166,7 +7245,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "futures", "futures-timer", @@ -7186,7 +7265,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "always-assert", "async-trait", @@ -7210,7 +7289,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "futures", "parity-scale-codec", @@ -7228,14 +7307,14 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "bitvec", "derive_more", "futures", "futures-timer", "kvdb", - "lru 0.7.7", + "lru 0.8.0", "merlin", "parity-scale-codec", "polkadot-node-jaeger", @@ -7257,7 +7336,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "bitvec", "futures", @@ -7277,7 +7356,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "bitvec", "fatality", @@ -7296,7 +7375,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7311,7 +7390,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "async-trait", "futures", @@ -7329,7 +7408,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7344,7 +7423,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "futures", "futures-timer", @@ -7361,12 +7440,12 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "fatality", "futures", "kvdb", - "lru 0.7.7", + "lru 0.8.0", "parity-scale-codec", "polkadot-node-primitives", "polkadot-node-subsystem", @@ -7380,7 +7459,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "async-trait", "futures", @@ -7397,7 +7476,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "bitvec", "fatality", @@ -7415,7 +7494,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "always-assert", "assert_matches", @@ -7447,7 +7526,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "futures", "polkadot-node-primitives", @@ -7463,7 +7542,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "futures", "memory-lru", @@ -7479,7 +7558,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "async-std", "lazy_static", @@ -7497,7 +7576,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "bs58", "futures", @@ -7516,7 +7595,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "async-trait", "derive_more", @@ -7539,7 +7618,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "bounded-vec", "futures", @@ -7561,7 +7640,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7571,7 +7650,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "async-trait", "futures", @@ -7589,7 +7668,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "async-trait", "derive_more", @@ -7612,7 +7691,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "async-trait", "derive_more", @@ -7620,7 +7699,7 @@ dependencies = [ "futures", "itertools", "kvdb", - "lru 0.7.7", + "lru 0.8.0", "parity-db", "parity-scale-codec", "parity-util-mem", @@ -7645,12 +7724,12 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "async-trait", "futures", "futures-timer", - "lru 0.7.7", + "lru 0.8.0", "orchestra", "parity-util-mem", "parking_lot 0.12.1", @@ -7668,7 +7747,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "derive_more", "frame-support", @@ -7765,7 +7844,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7780,7 +7859,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "bitvec", "frame-system", @@ -7810,7 +7889,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7842,7 +7921,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "beefy-primitives", "bitvec", @@ -7931,7 +8010,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "beefy-primitives", "bitvec", @@ -7978,7 +8057,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "frame-support", "polkadot-primitives", @@ -7990,7 +8069,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "bs58", "parity-scale-codec", @@ -8002,7 +8081,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "bitflags", "bitvec", @@ -8045,7 +8124,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "async-trait", "beefy-gadget", @@ -8057,7 +8136,7 @@ dependencies = [ "kusama-runtime", "kvdb", "kvdb-rocksdb", - "lru 0.7.7", + "lru 0.8.0", "pallet-babe", "pallet-im-online", "pallet-staking", @@ -8150,7 +8229,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8171,7 +8250,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8181,7 +8260,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8206,7 +8285,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "beefy-primitives", "bitvec", @@ -8267,7 +8346,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "frame-benchmarking", "frame-system", @@ -8412,7 +8491,8 @@ dependencies = [ [[package]] name = "prioritized-metered-channel" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "382698e48a268c832d0b181ed438374a6bb708a82a8ca273bb0f61c74cf209c4" dependencies = [ "coarsetime", "crossbeam-queue", @@ -8897,7 +8977,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9016,7 +9096,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9100,7 +9180,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "frame-support", "polkadot-primitives", @@ -9270,7 +9350,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "log", "sp-core", @@ -9281,7 +9361,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "futures", @@ -9290,8 +9370,8 @@ dependencies = [ "libp2p", "log", "parity-scale-codec", - "prost 0.10.3", - "prost-build 0.10.4", + "prost 0.11.0", + "prost-build 0.11.1", "rand 0.7.3", "sc-client-api", "sc-network-common", @@ -9308,7 +9388,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "futures-timer", @@ -9331,7 +9411,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9347,7 +9427,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9364,7 +9444,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9375,7 +9455,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "chrono", @@ -9415,7 +9495,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "fnv", "futures", @@ -9443,7 +9523,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "hash-db", "kvdb", @@ -9468,7 +9548,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "futures", @@ -9492,7 +9572,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "futures", @@ -9521,7 +9601,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "fork-tree", @@ -9563,7 +9643,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "jsonrpsee", @@ -9585,7 +9665,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9598,7 +9678,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "futures", @@ -9622,7 +9702,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9649,7 +9729,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "environmental", "parity-scale-codec", @@ -9665,7 +9745,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "log", "parity-scale-codec", @@ -9680,7 +9760,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9700,7 +9780,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "ahash", "array-bytes", @@ -9741,7 +9821,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "finality-grandpa", "futures", @@ -9762,7 +9842,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "ansi_term", "futures", @@ -9779,7 +9859,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "async-trait", @@ -9794,7 +9874,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "async-trait", @@ -9816,7 +9896,7 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "pin-project", - "prost 0.10.3", + "prost 0.11.0", "rand 0.7.3", "sc-block-builder", "sc-client-api", @@ -9841,7 +9921,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "cid", "futures", @@ -9861,7 +9941,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "bitflags", @@ -9871,7 +9951,7 @@ dependencies = [ "libp2p", "linked_hash_set", "parity-scale-codec", - "prost-build 0.10.4", + "prost-build 0.11.1", "sc-consensus", "sc-peerset", "serde", @@ -9887,7 +9967,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "ahash", "futures", @@ -9905,15 +9985,15 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "futures", "libp2p", "log", "parity-scale-codec", - "prost 0.10.3", - "prost-build 0.10.4", + "prost 0.11.0", + "prost-build 0.11.1", "sc-client-api", "sc-network-common", "sc-peerset", @@ -9926,7 +10006,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "fork-tree", @@ -9935,8 +10015,8 @@ dependencies = [ "log", "lru 0.7.7", "parity-scale-codec", - "prost 0.10.3", - "prost-build 0.10.4", + "prost 0.11.0", + "prost-build 0.11.1", "sc-client-api", "sc-consensus", "sc-network-common", @@ -9954,7 +10034,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "futures", @@ -9973,7 +10053,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "bytes", @@ -10003,7 +10083,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "libp2p", @@ -10016,7 +10096,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10025,7 +10105,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "hash-db", @@ -10055,7 +10135,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "jsonrpsee", @@ -10078,7 +10158,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "jsonrpsee", @@ -10091,7 +10171,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "directories", @@ -10161,7 +10241,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "log", "parity-scale-codec", @@ -10175,7 +10255,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10194,7 +10274,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "libc", @@ -10213,7 +10293,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "chrono", "futures", @@ -10231,7 +10311,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "ansi_term", "atty", @@ -10262,7 +10342,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10273,7 +10353,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "futures-timer", @@ -10299,7 +10379,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "log", @@ -10312,7 +10392,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "futures-timer", @@ -10742,7 +10822,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "enumn", "parity-scale-codec", @@ -10818,7 +10898,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "hash-db", "log", @@ -10836,7 +10916,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "blake2", "proc-macro-crate", @@ -10848,7 +10928,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "scale-info", @@ -10861,7 +10941,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "integer-sqrt", "num-traits", @@ -10876,7 +10956,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "scale-info", @@ -10889,7 +10969,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "parity-scale-codec", @@ -10901,7 +10981,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "sp-api", @@ -10913,7 +10993,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "log", @@ -10931,7 +11011,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "futures", @@ -10950,7 +11030,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "parity-scale-codec", @@ -10968,7 +11048,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "merlin", @@ -10991,7 +11071,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "scale-info", @@ -11005,7 +11085,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "scale-info", @@ -11018,7 +11098,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "base58", @@ -11064,7 +11144,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "blake2", "byteorder", @@ -11078,7 +11158,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "proc-macro2", "quote", @@ -11089,7 +11169,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11098,7 +11178,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "proc-macro2", "quote", @@ -11108,7 +11188,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "environmental", "parity-scale-codec", @@ -11119,7 +11199,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "finality-grandpa", "log", @@ -11137,7 +11217,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11151,7 +11231,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "bytes", "futures", @@ -11177,7 +11257,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "lazy_static", "sp-core", @@ -11188,7 +11268,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "futures", @@ -11205,7 +11285,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "thiserror", "zstd", @@ -11214,7 +11294,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "log", "parity-scale-codec", @@ -11229,7 +11309,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "scale-info", @@ -11243,7 +11323,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "sp-api", "sp-core", @@ -11253,7 +11333,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "backtrace", "lazy_static", @@ -11263,7 +11343,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "rustc-hash", "serde", @@ -11273,7 +11353,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "either", "hash256-std-hasher", @@ -11296,7 +11376,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11314,7 +11394,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "Inflector", "proc-macro-crate", @@ -11326,7 +11406,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "log", "parity-scale-codec", @@ -11340,7 +11420,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "serde", "serde_json", @@ -11349,7 +11429,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "scale-info", @@ -11363,7 +11443,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "scale-info", @@ -11374,7 +11454,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "hash-db", "log", @@ -11396,12 +11476,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11414,7 +11494,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "log", "sp-core", @@ -11427,7 +11507,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "futures-timer", @@ -11443,7 +11523,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "sp-std", @@ -11455,7 +11535,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "sp-api", "sp-runtime", @@ -11464,7 +11544,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "async-trait", "log", @@ -11480,7 +11560,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "ahash", "hash-db", @@ -11503,7 +11583,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11520,7 +11600,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11531,7 +11611,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "impl-trait-for-tuples", "log", @@ -11544,7 +11624,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11840,7 +11920,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "platforms", ] @@ -11848,7 +11928,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11869,7 +11949,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures-util", "hyper", @@ -11882,7 +11962,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "jsonrpsee", "log", @@ -11903,7 +11983,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "array-bytes", "async-trait", @@ -11929,7 +12009,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11939,7 +12019,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11950,7 +12030,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "ansi_term", "build-helper", @@ -12058,7 +12138,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "frame-support", "polkadot-primitives", @@ -12339,7 +12419,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12350,7 +12430,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12477,7 +12557,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#37664fe5b3513eb996225f016eceaf74963b8133" +source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" dependencies = [ "clap", "frame-try-runtime", @@ -13065,7 +13145,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "beefy-primitives", "bitvec", @@ -13155,7 +13235,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "frame-support", "polkadot-primitives", @@ -13438,7 +13518,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13452,7 +13532,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "frame-support", "frame-system", @@ -13472,7 +13552,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "frame-benchmarking", "frame-support", @@ -13490,7 +13570,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#3dbe51576a82c1297be7b43601dd97bc57693316" +source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" dependencies = [ "Inflector", "proc-macro2", diff --git a/parachains/runtimes/contracts/contracts-rococo/src/contracts.rs b/parachains/runtimes/contracts/contracts-rococo/src/contracts.rs index db59f92527..dab23f07b7 100644 --- a/parachains/runtimes/contracts/contracts-rococo/src/contracts.rs +++ b/parachains/runtimes/contracts/contracts-rococo/src/contracts.rs @@ -9,7 +9,7 @@ use frame_support::{ }; use pallet_contracts::{ weights::{SubstrateWeight, WeightInfo}, - Config, DefaultAddressGenerator, DefaultContractAccessWeight, Frame, Schedule, + Config, DefaultAddressGenerator, Frame, Schedule, }; pub use parachains_common::AVERAGE_ON_INITIALIZE_RATIO; @@ -55,7 +55,6 @@ impl Config for Runtime { type Schedule = MySchedule; type CallStack = [Frame; 31]; type AddressGenerator = DefaultAddressGenerator; - type ContractAccessWeight = DefaultContractAccessWeight; type MaxCodeLen = ConstU32<{ 128 * 1024 }>; type MaxStorageKeyLen = ConstU32<128>; } From 62e9c425e27801d6a3171cf072d64fd0e6a8d9cb Mon Sep 17 00:00:00 2001 From: Wilfried Kopp Date: Wed, 5 Oct 2022 12:16:05 +0200 Subject: [PATCH 06/48] Add protoc --- .github/workflows/docs.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index b2888f1247..ce9c6ec48f 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -11,6 +11,11 @@ jobs: runs-on: ubuntu-latest steps: + - name: Install tooling + run: | + apt-get install -y protobuf + protoc --version + - name: Checkout repository uses: actions/checkout@v3 From f836f83c876c8266bb9d443f0b91d0a9e799191f Mon Sep 17 00:00:00 2001 From: Chevdor Date: Wed, 5 Oct 2022 12:40:57 +0200 Subject: [PATCH 07/48] Update .github/workflows/docs.yml Co-authored-by: Alexander Samusev <41779041+alvicsam@users.noreply.github.com> --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index ce9c6ec48f..a7c87b1a8d 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Install tooling run: | - apt-get install -y protobuf + apt-get install -y protobuf-compiler protoc --version - name: Checkout repository From a668de357d27acae9f1eeca77a5830bb585e452b Mon Sep 17 00:00:00 2001 From: Alexander Samusev <41779041+alvicsam@users.noreply.github.com> Date: Thu, 6 Oct 2022 10:13:40 +0200 Subject: [PATCH 08/48] [ci] check fmt on master (#1734) --- .github/workflows/fmt-check.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/fmt-check.yml b/.github/workflows/fmt-check.yml index 844dda46b8..8f68be7a4a 100644 --- a/.github/workflows/fmt-check.yml +++ b/.github/workflows/fmt-check.yml @@ -1,6 +1,9 @@ name: Rustfmt check on: + push: + branches: + - master pull_request: types: [opened, synchronize, reopened, ready_for_review] From 30900e0e3c9bc501942815f62077f04e54190a25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Thei=C3=9Fen?= Date: Thu, 6 Oct 2022 10:41:13 +0200 Subject: [PATCH 09/48] Companion for Adapt to new contracts runtime api (#1736) * Adapt to new contracts runtime api * Compile fix * update lockfile for {"polkadot", "substrate"} Co-authored-by: parity-processbot <> --- Cargo.lock | 596 +++++++++--------- .../contracts/contracts-rococo/Cargo.toml | 2 - .../contracts/contracts-rococo/src/lib.rs | 14 +- 3 files changed, 289 insertions(+), 323 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 675a857bb7..be498e906c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "beefy-primitives", "sp-api", @@ -536,7 +536,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -564,9 +564,9 @@ dependencies = [ [[package]] name = "bindgen" -version = "0.59.2" +version = "0.60.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2bd2a9a458e8f4304c52c43ebb0cfbd520289f8379a52e329a38afda99bf8eb8" +checksum = "062dddbc1ba4aca46de6338e2bf87771414c335f7b2f2036e8f3e9befebf88e6" dependencies = [ "bitflags", "cexpr", @@ -982,7 +982,7 @@ checksum = "fa66045b9cb23c2e9c1520732030608b02ee07e5cfaa5a521ec15ded7fa24c90" dependencies = [ "glob", "libc", - "libloading 0.7.2", + "libloading", ] [[package]] @@ -1168,7 +1168,6 @@ dependencies = [ "pallet-collator-selection", "pallet-contracts", "pallet-contracts-primitives", - "pallet-contracts-runtime-api", "pallet-multisig", "pallet-randomness-collective-flip", "pallet-session", @@ -2710,9 +2709,9 @@ dependencies = [ [[package]] name = "fixed-hash" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfcf0ed7fe52a17a03854ec54a9f76d6d84508d1c0e66bc1793301c73fc8493c" +checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534" dependencies = [ "byteorder", "rand 0.8.5", @@ -2748,7 +2747,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", ] @@ -2765,7 +2764,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -2788,7 +2787,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "Inflector", "array-bytes", @@ -2839,7 +2838,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2850,7 +2849,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2866,7 +2865,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -2895,7 +2894,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "bitflags", "frame-metadata", @@ -2927,7 +2926,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "Inflector", "cfg-expr", @@ -2941,7 +2940,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2953,7 +2952,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro2", "quote", @@ -2963,7 +2962,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "log", @@ -2981,7 +2980,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -2996,7 +2995,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "sp-api", @@ -3005,7 +3004,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "parity-scale-codec", @@ -3020,18 +3019,6 @@ version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5ebd3504ad6116843b8375ad70df74e7bfe83cac77a1f3fe73200c844d43bfe0" -[[package]] -name = "fs-swap" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03d47dad3685eceed8488986cad3d5027165ea5edb164331770e2059555f10a5" -dependencies = [ - "lazy_static", - "libc", - "libloading 0.5.2", - "winapi", -] - [[package]] name = "fs2" version = "0.4.3" @@ -3597,9 +3584,9 @@ dependencies = [ [[package]] name = "impl-serde" -version = "0.3.2" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4551f042f3438e64dbd6226b20527fc84a6e1fe65688b58746a2f53623f25f5c" +checksum = "ebc88fc67028ae3db0c853baa36269d398d5f45b6982f95549ff5def78c935cd" dependencies = [ "serde", ] @@ -3884,7 +3871,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-primitives", "bitvec", @@ -3982,7 +3969,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-support", "polkadot-primitives", @@ -4002,9 +3989,9 @@ dependencies = [ [[package]] name = "kvdb" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a301d8ecb7989d4a6e2c57a49baca77d353bdbf879909debe3f375fe25d61f86" +checksum = "585089ceadba0197ffe9af6740ab350b325e3c1f5fccfbc3522e0250c750409b" dependencies = [ "parity-util-mem", "smallvec", @@ -4012,9 +3999,9 @@ dependencies = [ [[package]] name = "kvdb-memorydb" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ece7e668abd21387aeb6628130a6f4c802787f014fa46bc83221448322250357" +checksum = "40d109c87bfb7759edd2a49b2649c1afe25af785d930ad6a38479b4dc70dd873" dependencies = [ "kvdb", "parity-util-mem", @@ -4023,15 +4010,13 @@ dependencies = [ [[package]] name = "kvdb-rocksdb" -version = "0.15.2" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca7fbdfd71cd663dceb0faf3367a99f8cf724514933e9867cec4995b6027cbc1" +checksum = "c076cc2cdbac89b9910c853a36c957d3862a779f31c2661174222cefb49ee597" dependencies = [ - "fs-swap", "kvdb", "log", "num_cpus", - "owning_ref", "parity-util-mem", "parking_lot 0.12.1", "regex", @@ -4057,16 +4042,6 @@ version = "0.2.131" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "04c3b4822ccebfa39c02fc03d1534441b22ead323fa0f48bb7ddd8e6ba076a40" -[[package]] -name = "libloading" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753" -dependencies = [ - "cc", - "winapi", -] - [[package]] name = "libloading" version = "0.7.2" @@ -4600,9 +4575,9 @@ dependencies = [ [[package]] name = "librocksdb-sys" -version = "0.6.1+6.28.2" +version = "0.8.0+7.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81bc587013734dadb7cf23468e531aa120788b87243648be42e2d3a072186291" +checksum = "611804e4666a25136fcc5f8cf425ab4d26c7f74ea245ffe92ea23b85b6420b5d" dependencies = [ "bindgen", "bzip2-sys", @@ -4858,9 +4833,9 @@ dependencies = [ [[package]] name = "memory-db" -version = "0.29.0" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6566c70c1016f525ced45d7b7f97730a2bafb037c788211d0c186ef5b2189f0a" +checksum = "34ac11bb793c28fa095b7554466f53b3a60a2cd002afdac01bcf135cbd73a269" dependencies = [ "hash-db", "hashbrown 0.12.3", @@ -5377,7 +5352,7 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5398,7 +5373,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -5415,7 +5390,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5429,7 +5404,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -5445,7 +5420,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -5461,7 +5436,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -5476,7 +5451,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5500,7 +5475,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5520,7 +5495,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5535,7 +5510,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "beefy-primitives", "frame-support", @@ -5551,7 +5526,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5574,7 +5549,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5592,7 +5567,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5636,7 +5611,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5653,7 +5628,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "bitflags", "frame-benchmarking", @@ -5669,6 +5644,7 @@ dependencies = [ "scale-info", "serde", "smallvec", + "sp-api", "sp-core", "sp-io", "sp-runtime", @@ -5681,7 +5657,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "bitflags", "parity-scale-codec", @@ -5693,30 +5669,17 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro2", "quote", "syn", ] -[[package]] -name = "pallet-contracts-runtime-api" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" -dependencies = [ - "pallet-contracts-primitives", - "parity-scale-codec", - "scale-info", - "sp-api", - "sp-runtime", - "sp-std", -] - [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5733,14 +5696,16 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", + "log", "parity-scale-codec", "scale-info", "serde", + "sp-core", "sp-io", "sp-runtime", "sp-std", @@ -5749,7 +5714,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5773,7 +5738,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5786,7 +5751,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5804,7 +5769,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5825,7 +5790,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5840,7 +5805,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5863,7 +5828,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5879,7 +5844,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5899,7 +5864,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5916,7 +5881,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -5933,7 +5898,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5951,7 +5916,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5966,11 +5931,12 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", + "log", "parity-scale-codec", "scale-info", "sp-io", @@ -5981,7 +5947,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -5998,7 +5964,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6018,7 +5984,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "sp-api", @@ -6028,7 +5994,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -6045,7 +6011,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6068,11 +6034,12 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", + "log", "parity-scale-codec", "scale-info", "sp-core", @@ -6084,7 +6051,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6099,7 +6066,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -6113,7 +6080,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6131,7 +6098,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6146,7 +6113,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6164,7 +6131,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6180,7 +6147,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -6201,7 +6168,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6217,7 +6184,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -6231,7 +6198,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6254,7 +6221,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6265,7 +6232,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "sp-arithmetic", @@ -6274,7 +6241,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -6303,7 +6270,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6321,7 +6288,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6340,7 +6307,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-support", "frame-system", @@ -6356,7 +6323,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6371,7 +6338,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6382,7 +6349,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6399,7 +6366,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6414,7 +6381,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6430,7 +6397,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6445,7 +6412,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-benchmarking", "frame-support", @@ -6460,7 +6427,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-support", "frame-system", @@ -6478,7 +6445,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6697,9 +6664,9 @@ checksum = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f" [[package]] name = "parity-util-mem" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c32561d248d352148124f036cac253a644685a21dc9fea383eb4907d7bd35a8f" +checksum = "0d32c34f4f5ca7f9196001c0aba5a1f9a5a12382c8944b8b0f90233282d1e8f8" dependencies = [ "cfg-if 1.0.0", "hashbrown 0.12.3", @@ -7031,7 +6998,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7046,7 +7013,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7060,7 +7027,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "derive_more", "fatality", @@ -7083,7 +7050,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "fatality", "futures", @@ -7104,7 +7071,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "clap", "frame-benchmarking-cli", @@ -7130,7 +7097,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7171,7 +7138,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "always-assert", "bitvec", @@ -7193,7 +7160,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7206,7 +7173,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "derive_more", "fatality", @@ -7231,7 +7198,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7245,7 +7212,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "futures-timer", @@ -7265,7 +7232,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "always-assert", "async-trait", @@ -7289,7 +7256,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "parity-scale-codec", @@ -7307,7 +7274,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bitvec", "derive_more", @@ -7336,7 +7303,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bitvec", "futures", @@ -7356,7 +7323,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bitvec", "fatality", @@ -7375,7 +7342,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7390,7 +7357,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "futures", @@ -7408,7 +7375,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7423,7 +7390,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "futures-timer", @@ -7440,7 +7407,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "fatality", "futures", @@ -7459,7 +7426,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "futures", @@ -7476,7 +7443,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bitvec", "fatality", @@ -7494,7 +7461,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "always-assert", "assert_matches", @@ -7526,7 +7493,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "polkadot-node-primitives", @@ -7542,7 +7509,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "futures", "memory-lru", @@ -7558,7 +7525,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-std", "lazy_static", @@ -7576,7 +7543,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bs58", "futures", @@ -7595,7 +7562,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "derive_more", @@ -7618,7 +7585,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bounded-vec", "futures", @@ -7640,7 +7607,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7650,7 +7617,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "futures", @@ -7668,7 +7635,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "derive_more", @@ -7691,7 +7658,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "derive_more", @@ -7724,7 +7691,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "futures", @@ -7747,7 +7714,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "derive_more", "frame-support", @@ -7844,7 +7811,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7859,7 +7826,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bitvec", "frame-system", @@ -7889,7 +7856,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7921,7 +7888,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-primitives", "bitvec", @@ -8010,7 +7977,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-primitives", "bitvec", @@ -8057,7 +8024,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-support", "polkadot-primitives", @@ -8069,7 +8036,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bs58", "parity-scale-codec", @@ -8081,7 +8048,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "bitflags", "bitvec", @@ -8124,7 +8091,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "async-trait", "beefy-gadget", @@ -8229,7 +8196,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8250,7 +8217,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8260,7 +8227,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8285,7 +8252,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-primitives", "bitvec", @@ -8346,7 +8313,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-benchmarking", "frame-system", @@ -8477,9 +8444,9 @@ dependencies = [ [[package]] name = "primitive-types" -version = "0.11.1" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e28720988bff275df1f51b171e1b2a18c30d194c4d2b61defdacecd625a5d94a" +checksum = "5cfd65aea0c5fa0bfcc7c9e7ca828c921ef778f43d325325ec84bda371bfa75a" dependencies = [ "fixed-hash", "impl-codec", @@ -8977,7 +8944,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9038,9 +9005,9 @@ dependencies = [ [[package]] name = "rocksdb" -version = "0.18.0" +version = "0.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "620f4129485ff1a7128d184bc687470c21c7951b64779ebc9cfdad3dcd920290" +checksum = "7e9562ea1d70c0cc63a34a22d977753b50cca91cc6b6527750463bd5dd8697bc" dependencies = [ "libc", "librocksdb-sys", @@ -9096,7 +9063,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9180,7 +9147,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-support", "polkadot-primitives", @@ -9350,7 +9317,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "sp-core", @@ -9361,7 +9328,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "futures", @@ -9388,7 +9355,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "futures-timer", @@ -9411,7 +9378,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9427,7 +9394,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9444,7 +9411,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9455,7 +9422,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "chrono", @@ -9495,7 +9462,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "fnv", "futures", @@ -9523,7 +9490,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "hash-db", "kvdb", @@ -9548,7 +9515,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "futures", @@ -9572,7 +9539,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "futures", @@ -9601,7 +9568,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "fork-tree", @@ -9643,7 +9610,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "jsonrpsee", @@ -9665,7 +9632,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9678,7 +9645,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "futures", @@ -9702,7 +9669,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9729,7 +9696,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "environmental", "parity-scale-codec", @@ -9745,7 +9712,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "parity-scale-codec", @@ -9760,7 +9727,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9780,7 +9747,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "ahash", "array-bytes", @@ -9821,7 +9788,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "finality-grandpa", "futures", @@ -9842,7 +9809,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "ansi_term", "futures", @@ -9859,7 +9826,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "async-trait", @@ -9874,7 +9841,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "async-trait", @@ -9921,7 +9888,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "cid", "futures", @@ -9941,7 +9908,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "bitflags", @@ -9967,7 +9934,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "ahash", "futures", @@ -9985,7 +9952,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "futures", @@ -10006,7 +9973,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "fork-tree", @@ -10034,7 +10001,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "futures", @@ -10053,7 +10020,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "bytes", @@ -10083,7 +10050,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "libp2p", @@ -10096,7 +10063,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10105,7 +10072,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "hash-db", @@ -10135,7 +10102,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "jsonrpsee", @@ -10158,7 +10125,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "jsonrpsee", @@ -10171,7 +10138,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "directories", @@ -10241,7 +10208,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "parity-scale-codec", @@ -10255,7 +10222,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10274,7 +10241,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "libc", @@ -10293,7 +10260,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "chrono", "futures", @@ -10311,7 +10278,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "ansi_term", "atty", @@ -10342,7 +10309,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10353,7 +10320,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "futures-timer", @@ -10379,7 +10346,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "log", @@ -10392,7 +10359,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "futures-timer", @@ -10822,7 +10789,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "enumn", "parity-scale-codec", @@ -10898,7 +10865,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "hash-db", "log", @@ -10916,7 +10883,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "blake2", "proc-macro-crate", @@ -10928,7 +10895,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -10941,7 +10908,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "integer-sqrt", "num-traits", @@ -10956,7 +10923,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -10969,7 +10936,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "parity-scale-codec", @@ -10981,7 +10948,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "sp-api", @@ -10993,7 +10960,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "log", @@ -11011,7 +10978,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "futures", @@ -11030,7 +10997,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "parity-scale-codec", @@ -11048,7 +11015,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "merlin", @@ -11071,7 +11038,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -11085,7 +11052,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -11098,7 +11065,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "base58", @@ -11144,7 +11111,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "blake2", "byteorder", @@ -11158,7 +11125,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro2", "quote", @@ -11169,7 +11136,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11178,7 +11145,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro2", "quote", @@ -11188,7 +11155,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "environmental", "parity-scale-codec", @@ -11199,7 +11166,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "finality-grandpa", "log", @@ -11217,7 +11184,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11231,7 +11198,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "bytes", "futures", @@ -11257,7 +11224,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "lazy_static", "sp-core", @@ -11268,7 +11235,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "futures", @@ -11285,7 +11252,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "thiserror", "zstd", @@ -11294,10 +11261,11 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "parity-scale-codec", + "scale-info", "serde", "sp-api", "sp-core", @@ -11309,7 +11277,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -11323,7 +11291,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "sp-api", "sp-core", @@ -11333,7 +11301,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "backtrace", "lazy_static", @@ -11343,7 +11311,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "rustc-hash", "serde", @@ -11353,7 +11321,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "either", "hash256-std-hasher", @@ -11376,7 +11344,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11394,7 +11362,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "Inflector", "proc-macro-crate", @@ -11406,7 +11374,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "parity-scale-codec", @@ -11420,7 +11388,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "serde", "serde_json", @@ -11429,7 +11397,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -11443,7 +11411,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "scale-info", @@ -11454,7 +11422,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "hash-db", "log", @@ -11476,12 +11444,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11494,7 +11462,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "log", "sp-core", @@ -11507,7 +11475,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "futures-timer", @@ -11523,7 +11491,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "sp-std", @@ -11535,7 +11503,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "sp-api", "sp-runtime", @@ -11544,7 +11512,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "async-trait", "log", @@ -11560,7 +11528,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "ahash", "hash-db", @@ -11583,7 +11551,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11600,7 +11568,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11611,7 +11579,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "impl-trait-for-tuples", "log", @@ -11624,7 +11592,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11920,7 +11888,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "platforms", ] @@ -11928,7 +11896,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11949,7 +11917,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures-util", "hyper", @@ -11962,7 +11930,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "jsonrpsee", "log", @@ -11983,7 +11951,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "array-bytes", "async-trait", @@ -12009,7 +11977,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "futures", "substrate-test-utils-derive", @@ -12019,7 +11987,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12030,7 +11998,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "ansi_term", "build-helper", @@ -12138,7 +12106,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-support", "polkadot-primitives", @@ -12212,9 +12180,9 @@ dependencies = [ [[package]] name = "tikv-jemalloc-sys" -version = "0.4.3+5.2.1-patched.2" +version = "0.5.2+5.3.0-patched" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1792ccb507d955b46af42c123ea8863668fae24d03721e40cad6a41773dbb49" +checksum = "ec45c14da997d0925c7835883e4d5c181f196fa142f8c19d7643d1e9af2592c3" dependencies = [ "cc", "fs_extra", @@ -12419,7 +12387,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12430,7 +12398,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12557,7 +12525,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7a8de4995715cc6cd11a79eb262bf41e5b190943" +source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" dependencies = [ "clap", "frame-try-runtime", @@ -13145,7 +13113,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "beefy-primitives", "bitvec", @@ -13235,7 +13203,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-support", "polkadot-primitives", @@ -13518,7 +13486,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13532,7 +13500,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-support", "frame-system", @@ -13552,7 +13520,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "frame-benchmarking", "frame-support", @@ -13570,7 +13538,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#df4a1c3cd919c727c1c1c3676229193de1134380" +source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" dependencies = [ "Inflector", "proc-macro2", diff --git a/parachains/runtimes/contracts/contracts-rococo/Cargo.toml b/parachains/runtimes/contracts/contracts-rococo/Cargo.toml index 1d4b48b415..4bd3715fe4 100644 --- a/parachains/runtimes/contracts/contracts-rococo/Cargo.toml +++ b/parachains/runtimes/contracts/contracts-rococo/Cargo.toml @@ -49,7 +49,6 @@ pallet-utility = { git = "https://github.com/paritytech/substrate", default-feat pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } pallet-contracts = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } pallet-contracts-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -pallet-contracts-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } @@ -93,7 +92,6 @@ std = [ "pallet-balances/std", "pallet-collator-selection/std", "pallet-contracts-primitives/std", - "pallet-contracts-runtime-api/std", "pallet-contracts/std", "pallet-multisig/std", "pallet-randomness-collective-flip/std", diff --git a/parachains/runtimes/contracts/contracts-rococo/src/lib.rs b/parachains/runtimes/contracts/contracts-rococo/src/lib.rs index 8bbe2edec6..92ddbaf7ad 100644 --- a/parachains/runtimes/contracts/contracts-rococo/src/lib.rs +++ b/parachains/runtimes/contracts/contracts-rococo/src/lib.rs @@ -505,22 +505,21 @@ impl_runtime_apis! { } } -impl pallet_contracts_runtime_api::ContractsApi - for Runtime - { + impl pallet_contracts::ContractsApi for Runtime { fn call( origin: AccountId, dest: AccountId, value: Balance, - gas_limit: u64, + gas_limit: Option, storage_deposit_limit: Option, input_data: Vec, ) -> pallet_contracts_primitives::ContractExecResult { + let gas_limit = gas_limit.unwrap_or(RuntimeBlockWeights::get().max_block); Contracts::bare_call( origin, dest, value, - Weight::from_ref_time(gas_limit), + gas_limit, storage_deposit_limit, input_data, contracts::CONTRACTS_DEBUG_OUTPUT, @@ -530,16 +529,17 @@ impl pallet_contracts_runtime_api::ContractsApi, storage_deposit_limit: Option, code: pallet_contracts_primitives::Code, data: Vec, salt: Vec, ) -> pallet_contracts_primitives::ContractInstantiateResult { + let gas_limit = gas_limit.unwrap_or(RuntimeBlockWeights::get().max_block); Contracts::bare_instantiate( origin, value, - Weight::from_ref_time(gas_limit), + gas_limit, storage_deposit_limit, code, data, From 8db577e34263872a4853dc37c60dcf6506432e72 Mon Sep 17 00:00:00 2001 From: Wilfried Kopp Date: Wed, 5 Oct 2022 17:03:20 +0200 Subject: [PATCH 10/48] Fix protoc install --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index a7c87b1a8d..b9f73c2a35 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Install tooling run: | - apt-get install -y protobuf-compiler + sudo apt-get install -y protobuf-compiler protoc --version - name: Checkout repository From fde36ad4f909799358fca41aa9c8a35e5249c00d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Oct 2022 23:04:47 +0200 Subject: [PATCH 11/48] Bump syn from 1.0.101 to 1.0.102 (#1746) Bumps [syn](https://github.com/dtolnay/syn) from 1.0.101 to 1.0.102. - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/1.0.101...1.0.102) --- updated-dependencies: - dependency-name: syn dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- pallets/parachain-system/proc-macro/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index be498e906c..5ed50bdc72 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -12020,9 +12020,9 @@ checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" [[package]] name = "syn" -version = "1.0.101" +version = "1.0.102" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e90cde112c4b9690b8cbe810cba9ddd8bc1d7472e2cae317b69e9438c1cba7d2" +checksum = "3fcd952facd492f9be3ef0d0b7032a6e442ee9b361d4acc2b1d0c4aaa5f613a1" dependencies = [ "proc-macro2", "quote", diff --git a/pallets/parachain-system/proc-macro/Cargo.toml b/pallets/parachain-system/proc-macro/Cargo.toml index 6e9141fdd0..0bedb8660e 100644 --- a/pallets/parachain-system/proc-macro/Cargo.toml +++ b/pallets/parachain-system/proc-macro/Cargo.toml @@ -9,7 +9,7 @@ description = "Proc macros provided by the parachain-system pallet" proc-macro = true [dependencies] -syn = "1.0.101" +syn = "1.0.102" proc-macro2 = "1.0.46" quote = "1.0.21" proc-macro-crate = "1.2.1" From 7612d616e01e8cb1fee57937f2cc7a85c32d367d Mon Sep 17 00:00:00 2001 From: Sebastian Kunert Date: Mon, 10 Oct 2022 09:06:26 +0200 Subject: [PATCH 12/48] Enable collation via RPC relay chain node (#1585) * Add minimal overseer gen with dummy subsystems * Fix dependencies * no-compile: only client transaction pool missing * Remove unused imports * Continue to hack towards PoC * Continue * Make mini node compile * Compiling version with blockchainevents trait * Continue * Check in lockfile * Block with tokio * update patches * Update polkadot patches * Use polkadot-primitives v2 * Fix build problems * First working version * Adjust cargo.lock * Add integration test * Make integration test work * Allow startinc collator without relay-chain args * Make OverseerRuntimeClient async * Create separate integration test * Remove unused ChainSelection code * Remove unused parameters on new-mini * Connect collator node in test to relay chain nodes * Make BlockChainRPCClient obsolete * Clean up * Clean up * Reimplement blockchain-rpc-events * Revert "Allow startinc collator without relay-chain args" This reverts commit f22c70e16521f375fe125df5616d48ceea926b1a. * Add `strict_record_validation` to AuthorityDiscovery * Move network to cumulus * Remove BlockchainRPCEvents * Remove `BlockIdTo` and `BlockchainEvents` * Make AuthorityDiscovery async * Use hash in OverseerRuntime * Adjust naming of runtime client trait * Implement more rpc-client methods * Improve error handling for `ApiError` * Extract authority-discovery creationand cleanup * RPC -> Rpc * Extract bitswap * Adjust to changes on master * Implement `hash` method * Introduce DummyChainSync, remove ProofProvider and BlockBackend * Remove `HeaderMetadata` from blockchain-rpc-client * Make ChainSync work * Implement NetworkHeaderBackend * Cleanup * Adjustments after master merge * Remove ImportQueue from network parameters * Remove cargo patches * Eliminate warnings * Revert to HeaderBackend * Add zombienet test * Implement `status()` method * Add more comments, improve readability * Remove patches from Cargo.toml * Remove integration test in favor of zombienet * Remove unused dependencies, rename minimal node crate * Adjust to latest master changes * fmt * Execute zombienet test on gitlab ci * Reuse network metrics * Chainsync metrics * fmt * Feed RPC node as boot node to the relay chain minimal node * fmt * Add bootnodes to zombienet collators * Allow specification of relay chain args * Apply review suggestions * Remove unnecessary casts * Enable PoV recovery for rpc full nodes * Revert unwanted changes * Make overseerHandle non-optional * Add availability-store subsystem * Add AuxStore and ChainApiSubsystem * Add availability distribution subsystem * Improve pov-recovery logging and add RPC nodes to tests * fmt * Make availability config const * lock * Enable debug logs for pov-recovery in zombienet * Add log filters to test binary * Allow wss * Address review comments * Apply reviewer comments * Adjust to master changes * Apply reviewer suggestions * Bump polkadot * Add builder method for minimal node * Bump substrate and polkadot * Clean up overseer building * Add bootnode to two in pov_recovery test * Fix missing quote in pov recovery zombienet test * Improve zombienet pov test * More debug logs for pov-recovery * Remove reserved nodes like on original test * Revert zombienet test to master --- .gitlab-ci.yml | 29 ++ Cargo.lock | 51 ++ Cargo.toml | 1 + client/cli/src/lib.rs | 8 +- client/network/src/tests.rs | 2 +- client/pov-recovery/Cargo.toml | 1 + client/pov-recovery/src/lib.rs | 12 +- client/pov-recovery/tests/pov_recovery.rs | 41 +- .../Cargo.toml | 4 + .../src/lib.rs | 16 +- client/relay-chain-interface/src/lib.rs | 25 +- client/relay-chain-minimal-node/Cargo.toml | 49 ++ .../src/blockchain_rpc_client.rs | 463 ++++++++++++++++++ .../src/collator_overseer.rs | 274 +++++++++++ client/relay-chain-minimal-node/src/lib.rs | 223 +++++++++ .../relay-chain-minimal-node/src/network.rs | 384 +++++++++++++++ client/relay-chain-rpc-interface/Cargo.toml | 3 + client/relay-chain-rpc-interface/src/lib.rs | 11 +- .../src/rpc_client.rs | 312 ++++++++++-- client/service/src/lib.rs | 17 +- parachain-template/node/Cargo.toml | 1 + parachain-template/node/src/command.rs | 6 +- parachain-template/node/src/service.rs | 10 +- polkadot-parachain/Cargo.toml | 1 + polkadot-parachain/src/cli.rs | 2 +- polkadot-parachain/src/command.rs | 6 +- polkadot-parachain/src/service.rs | 11 +- test/service/Cargo.toml | 1 + test/service/src/cli.rs | 2 +- test/service/src/lib.rs | 20 +- test/service/src/main.rs | 3 +- .../0006-rpc_collator_builds_blocks.feature | 17 + .../0006-rpc_collator_builds_blocks.toml | 46 ++ 33 files changed, 1948 insertions(+), 104 deletions(-) create mode 100644 client/relay-chain-minimal-node/Cargo.toml create mode 100644 client/relay-chain-minimal-node/src/blockchain_rpc_client.rs create mode 100644 client/relay-chain-minimal-node/src/collator_overseer.rs create mode 100644 client/relay-chain-minimal-node/src/lib.rs create mode 100644 client/relay-chain-minimal-node/src/network.rs create mode 100644 zombienet_tests/0006-rpc_collator_builds_blocks.feature create mode 100644 zombienet_tests/0006-rpc_collator_builds_blocks.toml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 00c414693a..38bccdb91b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -635,6 +635,35 @@ zombienet-0005-migrate_solo_to_para: tags: - zombienet-polkadot-integration-test +0006-rpc_collator_builds_blocks: + stage: integration-test + image: "${ZOMBIENET_IMAGE}" + <<: *zombienet-refs + needs: + - job: build-push-image-test-parachain + variables: + POLKADOT_IMAGE: "docker.io/paritypr/polkadot-debug:master" + GH_DIR: "https://github.com/paritytech/cumulus/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests" + COL_IMAGE: "docker.io/paritypr/test-parachain:${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHORT_SHA}" + before_script: + - echo "Zombie-net Tests Config" + - echo "${ZOMBIENET_IMAGE}" + - echo "${RELAY_IMAGE}" + - echo "${COL_IMAGE}" + - echo "${GH_DIR}" + - export DEBUG=zombie + - export RELAY_IMAGE=${POLKADOT_IMAGE} + - export COL_IMAGE=${COL_IMAGE} + script: + - /home/nonroot/zombie-net/scripts/ci/run-test-env-manager.sh + --github-remote-dir="${GH_DIR}" + --concurrency=1 + --test="0006-rpc_collator_builds_blocks.feature" + allow_failure: true + retry: 2 + tags: + - zombienet-polkadot-integration-test + #### stage: .post # This job cancels the whole pipeline if any of provided jobs fail. diff --git a/Cargo.lock b/Cargo.lock index 5ed50bdc72..c5ab759922 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1692,6 +1692,7 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-overseer", "polkadot-primitives", + "portpicker", "rand 0.8.5", "sc-cli", "sc-client-api", @@ -1959,6 +1960,7 @@ dependencies = [ "async-trait", "cumulus-primitives-core", "cumulus-relay-chain-interface", + "cumulus-test-service", "futures", "futures-timer", "polkadot-cli", @@ -1966,6 +1968,7 @@ dependencies = [ "polkadot-primitives", "polkadot-service", "polkadot-test-client", + "prioritized-metered-channel", "sc-cli", "sc-client-api", "sc-sysinfo", @@ -1997,6 +2000,48 @@ dependencies = [ "thiserror", ] +[[package]] +name = "cumulus-relay-chain-minimal-node" +version = "0.1.0" +dependencies = [ + "async-trait", + "cumulus-primitives-core", + "cumulus-relay-chain-interface", + "cumulus-relay-chain-rpc-interface", + "futures", + "lru 0.8.0", + "polkadot-availability-distribution", + "polkadot-core-primitives", + "polkadot-network-bridge", + "polkadot-node-core-av-store", + "polkadot-node-network-protocol", + "polkadot-node-subsystem-util", + "polkadot-overseer", + "polkadot-primitives", + "polkadot-service", + "sc-authority-discovery", + "sc-client-api", + "sc-consensus", + "sc-keystore", + "sc-network", + "sc-network-common", + "sc-network-light", + "sc-network-sync", + "sc-service", + "sc-telemetry", + "sc-tracing", + "sc-transaction-pool", + "sc-transaction-pool-api", + "sp-api", + "sp-blockchain", + "sp-consensus", + "sp-consensus-babe", + "sp-runtime", + "tokio", + "tracing", + "url", +] + [[package]] name = "cumulus-relay-chain-rpc-interface" version = "0.1.0" @@ -2012,6 +2057,9 @@ dependencies = [ "polkadot-service", "sc-client-api", "sc-rpc-api", + "sp-api", + "sp-authority-discovery", + "sp-consensus-babe", "sp-core", "sp-runtime", "sp-state-machine", @@ -2119,6 +2167,7 @@ dependencies = [ "cumulus-primitives-parachain-inherent", "cumulus-relay-chain-inprocess-interface", "cumulus-relay-chain-interface", + "cumulus-relay-chain-minimal-node", "cumulus-relay-chain-rpc-interface", "cumulus-test-relay-validation-worker-provider", "cumulus-test-runtime", @@ -6484,6 +6533,7 @@ dependencies = [ "cumulus-primitives-parachain-inherent", "cumulus-relay-chain-inprocess-interface", "cumulus-relay-chain-interface", + "cumulus-relay-chain-minimal-node", "cumulus-relay-chain-rpc-interface", "frame-benchmarking", "frame-benchmarking-cli", @@ -7747,6 +7797,7 @@ dependencies = [ "cumulus-primitives-parachain-inherent", "cumulus-relay-chain-inprocess-interface", "cumulus-relay-chain-interface", + "cumulus-relay-chain-minimal-node", "cumulus-relay-chain-rpc-interface", "frame-benchmarking", "frame-benchmarking-cli", diff --git a/Cargo.toml b/Cargo.toml index 487fc124da..cacb7bea7f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,7 @@ members = [ "client/relay-chain-interface", "client/relay-chain-inprocess-interface", "client/relay-chain-rpc-interface", + "client/relay-chain-minimal-node", "pallets/aura-ext", "pallets/collator-selection", "pallets/dmp-queue", diff --git a/client/cli/src/lib.rs b/client/cli/src/lib.rs index 9fea382a7e..6afe0c53b6 100644 --- a/client/cli/src/lib.rs +++ b/client/cli/src/lib.rs @@ -264,7 +264,8 @@ impl sc_cli::CliConfiguration for ExportGenesisWasmCommand { fn validate_relay_chain_url(arg: &str) -> Result { let url = Url::parse(arg).map_err(|e| e.to_string())?; - if url.scheme() == "ws" { + let scheme = url.scheme(); + if scheme == "ws" || scheme == "wss" { Ok(url) } else { Err(format!( @@ -290,9 +291,8 @@ pub struct RunCmd { /// EXPERIMENTAL: Specify an URL to a relay chain full node to communicate with. #[clap( long, - value_parser = validate_relay_chain_url, - conflicts_with_all = &["alice", "bob", "charlie", "dave", "eve", "ferdie", "one", "two"] ) - ] + value_parser = validate_relay_chain_url + )] pub relay_chain_rpc_url: Option, } diff --git a/client/network/src/tests.rs b/client/network/src/tests.rs index c2093c75ad..cef327b876 100644 --- a/client/network/src/tests.rs +++ b/client/network/src/tests.rs @@ -174,7 +174,7 @@ impl RelayChainInterface for DummyRelayChainInterface { Ok(false) } - fn overseer_handle(&self) -> RelayChainResult> { + fn overseer_handle(&self) -> RelayChainResult { unimplemented!("Not needed for test") } diff --git a/client/pov-recovery/Cargo.toml b/client/pov-recovery/Cargo.toml index 5bc5adc87d..530e3340ec 100644 --- a/client/pov-recovery/Cargo.toml +++ b/client/pov-recovery/Cargo.toml @@ -31,6 +31,7 @@ cumulus-relay-chain-interface = {path = "../relay-chain-interface"} [dev-dependencies] tokio = { version = "1.21.1", features = ["macros"] } +portpicker = "0.1.1" # Cumulus cumulus-test-service = { path = "../../test/service" } diff --git a/client/pov-recovery/src/lib.rs b/client/pov-recovery/src/lib.rs index aeff69d56c..3327d4bb86 100644 --- a/client/pov-recovery/src/lib.rs +++ b/client/pov-recovery/src/lib.rs @@ -181,7 +181,7 @@ where Ok(_) => return, Err(e) => { tracing::debug!( - target: "cumulus-consensus", + target: LOG_TARGET, error = ?e, block_hash = ?hash, "Failed to get block status", @@ -190,6 +190,7 @@ where }, } + tracing::debug!(target: LOG_TARGET, ?hash, "Adding pending candidate"); if self .pending_candidates .insert( @@ -233,6 +234,7 @@ where None => return, }; + tracing::debug!(target: LOG_TARGET, ?block_hash, "Issuing recovery request"); self.active_candidate_recovery .recover_candidate(block_hash, pending_candidate) .await; @@ -301,7 +303,7 @@ where Ok(BlockStatus::Unknown) => { if self.active_candidate_recovery.is_being_recovered(&parent) { tracing::debug!( - target: "cumulus-consensus", + target: LOG_TARGET, ?block_hash, parent_hash = ?parent, "Parent is still being recovered, waiting.", @@ -311,7 +313,7 @@ where return } else { tracing::debug!( - target: "cumulus-consensus", + target: LOG_TARGET, ?block_hash, parent_hash = ?parent, "Parent not found while trying to import recovered block.", @@ -324,7 +326,7 @@ where }, Err(error) => { tracing::debug!( - target: "cumulus-consensus", + target: LOG_TARGET, block_hash = ?parent, ?error, "Error while checking block status", @@ -346,6 +348,8 @@ where /// This will also recursivley drain `waiting_for_parent` and import them as well. async fn import_block(&mut self, block: Block) { let mut blocks = VecDeque::new(); + + tracing::debug!(target: LOG_TARGET, hash = ?block.hash(), "Importing block retrieved using pov_recovery"); blocks.push_back(block); let mut incoming_blocks = Vec::new(); diff --git a/client/pov-recovery/tests/pov_recovery.rs b/client/pov-recovery/tests/pov_recovery.rs index bd93d00dd4..dd8be63489 100644 --- a/client/pov-recovery/tests/pov_recovery.rs +++ b/client/pov-recovery/tests/pov_recovery.rs @@ -16,6 +16,7 @@ use cumulus_primitives_core::ParaId; use cumulus_test_service::{initial_head_data, Keyring::*}; +use futures::join; use std::sync::Arc; /// Tests the PoV recovery. @@ -34,12 +35,13 @@ async fn pov_recovery() { let tokio_handle = tokio::runtime::Handle::current(); // Start alice + let ws_port = portpicker::pick_unused_port().expect("No free ports"); let alice = cumulus_test_service::run_relay_chain_validator_node( tokio_handle.clone(), Alice, || {}, Vec::new(), - None, + Some(ws_port), ); // Start bob @@ -90,7 +92,7 @@ async fn pov_recovery() { .build() .await; - let eve = cumulus_test_service::TestNodeBuilder::new(para_id, tokio_handle, Eve) + let eve = cumulus_test_service::TestNodeBuilder::new(para_id, tokio_handle.clone(), Eve) .use_null_consensus() .connect_to_parachain_node(&charlie) .connect_to_relay_chain_nodes(vec![&alice, &bob]) @@ -101,5 +103,38 @@ async fn pov_recovery() { .build() .await; - futures::future::join(dave.wait_for_blocks(7), eve.wait_for_blocks(7)).await; + // Run ferdie as parachain RPC collator and one as parachain RPC full node + // + // They will need to recover the pov blocks through availability recovery. + let ferdie = cumulus_test_service::TestNodeBuilder::new(para_id, tokio_handle.clone(), Ferdie) + .use_null_consensus() + .connect_to_parachain_node(&charlie) + .connect_to_relay_chain_nodes(vec![&alice, &bob]) + .use_external_relay_chain_node_at_port(ws_port) + .wrap_announce_block(|_| { + // Never announce any block + Arc::new(|_, _| {}) + }) + .build() + .await; + + let one = cumulus_test_service::TestNodeBuilder::new(para_id, tokio_handle, One) + .enable_collator() + .use_null_consensus() + .connect_to_parachain_node(&charlie) + .connect_to_relay_chain_nodes(vec![&alice, &bob]) + .use_external_relay_chain_node_at_port(ws_port) + .wrap_announce_block(|_| { + // Never announce any block + Arc::new(|_, _| {}) + }) + .build() + .await; + + join!( + dave.wait_for_blocks(7), + eve.wait_for_blocks(7), + ferdie.wait_for_blocks(7), + one.wait_for_blocks(7) + ); } diff --git a/client/relay-chain-inprocess-interface/Cargo.toml b/client/relay-chain-inprocess-interface/Cargo.toml index e2c38c87de..80afe12228 100644 --- a/client/relay-chain-inprocess-interface/Cargo.toml +++ b/client/relay-chain-inprocess-interface/Cargo.toml @@ -38,3 +38,7 @@ sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master # Polkadot polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "master" } +metered = { package = "prioritized-metered-channel", version = "0.2.0" } + +# Cumulus +cumulus-test-service = { path = "../../test/service" } diff --git a/client/relay-chain-inprocess-interface/src/lib.rs b/client/relay-chain-inprocess-interface/src/lib.rs index d713ab9cf3..70df07ad47 100644 --- a/client/relay-chain-inprocess-interface/src/lib.rs +++ b/client/relay-chain-inprocess-interface/src/lib.rs @@ -50,7 +50,7 @@ pub struct RelayChainInProcessInterface { full_client: Arc, backend: Arc, sync_oracle: Arc, - overseer_handle: Option, + overseer_handle: Handle, } impl RelayChainInProcessInterface { @@ -59,7 +59,7 @@ impl RelayChainInProcessInterface { full_client: Arc, backend: Arc, sync_oracle: Arc, - overseer_handle: Option, + overseer_handle: Handle, ) -> Self { Self { full_client, backend, sync_oracle, overseer_handle } } @@ -171,7 +171,7 @@ where Ok(self.sync_oracle.is_major_syncing()) } - fn overseer_handle(&self) -> RelayChainResult> { + fn overseer_handle(&self) -> RelayChainResult { Ok(self.overseer_handle.clone()) } @@ -288,7 +288,7 @@ struct RelayChainInProcessInterfaceBuilder { polkadot_client: polkadot_client::Client, backend: Arc, sync_oracle: Arc, - overseer_handle: Option, + overseer_handle: Handle, } impl RelayChainInProcessInterfaceBuilder { @@ -378,7 +378,9 @@ pub fn build_inprocess_relay_chain( polkadot_client: full_node.client.clone(), backend: full_node.backend.clone(), sync_oracle, - overseer_handle: full_node.overseer_handle.clone(), + overseer_handle: full_node.overseer_handle.clone().ok_or(RelayChainError::GenericError( + "Overseer not running in full node.".to_string(), + ))?, }; task_manager.add_child(full_node.task_manager); @@ -425,10 +427,12 @@ mod tests { let block = block_builder.build().expect("Finalizes the block").block; let dummy_network: Arc = Arc::new(DummyNetwork {}); + let (tx, _rx) = metered::channel(30); + let mock_handle = Handle::new(tx); ( client.clone(), block, - RelayChainInProcessInterface::new(client, backend.clone(), dummy_network, None), + RelayChainInProcessInterface::new(client, backend.clone(), dummy_network, mock_handle), ) } diff --git a/client/relay-chain-interface/src/lib.rs b/client/relay-chain-interface/src/lib.rs index 91cfb531b7..4505ac7097 100644 --- a/client/relay-chain-interface/src/lib.rs +++ b/client/relay-chain-interface/src/lib.rs @@ -23,7 +23,8 @@ use cumulus_primitives_core::{ }, InboundDownwardMessage, ParaId, PersistedValidationData, }; -use polkadot_overseer::Handle as OverseerHandle; +use polkadot_overseer::{prometheus::PrometheusError, Handle as OverseerHandle}; +use polkadot_service::SubstrateServiceError; use sc_client_api::StorageProof; use futures::Stream; @@ -58,18 +59,34 @@ pub enum RelayChainError { WorkerCommunicationError(String), #[error("Scale codec deserialization error: {0}")] DeserializationError(CodecError), - #[error("Scale codec deserialization error: {0}")] + #[error("Polkadot service error: {0}")] ServiceError(#[from] polkadot_service::Error), + #[error("Substrate service error: {0}")] + SubServiceError(#[from] SubstrateServiceError), + #[error("Prometheus error: {0}")] + PrometheusError(#[from] PrometheusError), #[error("Unspecified error occured: {0}")] GenericError(String), } +impl From for ApiError { + fn from(r: RelayChainError) -> Self { + sp_api::ApiError::Application(Box::new(r)) + } +} + impl From for RelayChainError { fn from(e: CodecError) -> Self { RelayChainError::DeserializationError(e) } } +impl From for sp_blockchain::Error { + fn from(r: RelayChainError) -> Self { + sp_blockchain::Error::Application(Box::new(r)) + } +} + /// Trait that provides all necessary methods for interaction between collator and relay chain. #[async_trait] pub trait RelayChainInterface: Send + Sync { @@ -155,7 +172,7 @@ pub trait RelayChainInterface: Send + Sync { async fn is_major_syncing(&self) -> RelayChainResult; /// Get a handle to the overseer. - fn overseer_handle(&self) -> RelayChainResult>; + fn overseer_handle(&self) -> RelayChainResult; /// Generate a storage read proof. async fn prove_read( @@ -233,7 +250,7 @@ where (**self).is_major_syncing().await } - fn overseer_handle(&self) -> RelayChainResult> { + fn overseer_handle(&self) -> RelayChainResult { (**self).overseer_handle() } diff --git a/client/relay-chain-minimal-node/Cargo.toml b/client/relay-chain-minimal-node/Cargo.toml new file mode 100644 index 0000000000..6c9cb25536 --- /dev/null +++ b/client/relay-chain-minimal-node/Cargo.toml @@ -0,0 +1,49 @@ +[package] +authors = ["Parity Technologies "] +name = "cumulus-relay-chain-minimal-node" +version = "0.1.0" +edition = "2021" + +[dependencies] +# polkadot deps +polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-node-subsystem-util = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-node-network-protocol = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-network-bridge = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-node-core-av-store = { git = "https://github.com/paritytech/polkadot", branch = "master" } +polkadot-availability-distribution = { git = "https://github.com/paritytech/polkadot", branch = "master" } + +# substrate deps +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network-sync = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network-common = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network-light = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } + +# cumulus deps +cumulus-relay-chain-interface = { path = "../relay-chain-interface" } +cumulus-relay-chain-rpc-interface = { path = "../relay-chain-rpc-interface" } +cumulus-primitives-core = { path = "../../primitives/core" } + +lru = "0.8" +tracing = "0.1.25" +async-trait = "0.1.52" +futures = "0.3.24" +url = "2.2.2" +tokio = { version = "1.17.0", features = ["macros"] } diff --git a/client/relay-chain-minimal-node/src/blockchain_rpc_client.rs b/client/relay-chain-minimal-node/src/blockchain_rpc_client.rs new file mode 100644 index 0000000000..bf1a3c9a38 --- /dev/null +++ b/client/relay-chain-minimal-node/src/blockchain_rpc_client.rs @@ -0,0 +1,463 @@ +// Copyright 2022 Parity Technologies (UK) Ltd. +// This file is part of Cumulus. + +// Cumulus is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// Cumulus is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with Cumulus. If not, see . + +use std::{pin::Pin, str::FromStr}; + +use cumulus_relay_chain_interface::{RelayChainError, RelayChainResult}; +use cumulus_relay_chain_rpc_interface::RelayChainRpcClient; +use futures::{Future, Stream, StreamExt}; +use polkadot_core_primitives::{Block, BlockId, Hash, Header}; +use polkadot_overseer::RuntimeApiSubsystemClient; +use polkadot_service::{AuxStore, HeaderBackend}; +use sc_authority_discovery::AuthorityDiscovery; + +use sc_network_common::config::MultiaddrWithPeerId; +use sp_api::{ApiError, RuntimeApiInfo}; +use sp_blockchain::Info; + +const LOG_TARGET: &str = "blockchain-rpc-client"; + +#[derive(Clone)] +pub struct BlockChainRpcClient { + rpc_client: RelayChainRpcClient, +} + +impl BlockChainRpcClient { + pub fn new(rpc_client: RelayChainRpcClient) -> Self { + Self { rpc_client } + } + + pub async fn chain_get_header( + &self, + hash: Option, + ) -> Result, RelayChainError> { + self.rpc_client.chain_get_header(hash).await + } + + pub async fn block_get_hash( + &self, + number: Option, + ) -> Result, RelayChainError> { + self.rpc_client.chain_get_block_hash(number).await + } +} + +// Implementation required by Availability-Distribution subsystem +// but never called in our case. +impl AuxStore for BlockChainRpcClient { + fn insert_aux< + 'a, + 'b: 'a, + 'c: 'a, + I: IntoIterator, + D: IntoIterator, + >( + &self, + _insert: I, + _delete: D, + ) -> sp_blockchain::Result<()> { + unimplemented!("Not supported on the RPC collator") + } + + fn get_aux(&self, _key: &[u8]) -> sp_blockchain::Result>> { + unimplemented!("Not supported on the RPC collator") + } +} + +#[async_trait::async_trait] +impl RuntimeApiSubsystemClient for BlockChainRpcClient { + async fn validators( + &self, + at: Hash, + ) -> Result, sp_api::ApiError> { + Ok(self.rpc_client.parachain_host_validators(at).await?) + } + + async fn validator_groups( + &self, + at: Hash, + ) -> Result< + ( + Vec>, + polkadot_primitives::v2::GroupRotationInfo, + ), + sp_api::ApiError, + > { + Ok(self.rpc_client.parachain_host_validator_groups(at).await?) + } + + async fn availability_cores( + &self, + at: Hash, + ) -> Result< + Vec>, + sp_api::ApiError, + > { + Ok(self.rpc_client.parachain_host_availability_cores(at).await?) + } + + async fn persisted_validation_data( + &self, + at: Hash, + para_id: cumulus_primitives_core::ParaId, + assumption: polkadot_primitives::v2::OccupiedCoreAssumption, + ) -> Result< + Option< + cumulus_primitives_core::PersistedValidationData< + Hash, + polkadot_core_primitives::BlockNumber, + >, + >, + sp_api::ApiError, + > { + Ok(self + .rpc_client + .parachain_host_persisted_validation_data(at, para_id, assumption) + .await?) + } + + async fn assumed_validation_data( + &self, + at: Hash, + para_id: cumulus_primitives_core::ParaId, + expected_persisted_validation_data_hash: Hash, + ) -> Result< + Option<( + cumulus_primitives_core::PersistedValidationData< + Hash, + polkadot_core_primitives::BlockNumber, + >, + polkadot_primitives::v2::ValidationCodeHash, + )>, + sp_api::ApiError, + > { + Ok(self + .rpc_client + .parachain_host_assumed_validation_data( + at, + para_id, + expected_persisted_validation_data_hash, + ) + .await?) + } + + async fn check_validation_outputs( + &self, + at: Hash, + para_id: cumulus_primitives_core::ParaId, + outputs: polkadot_primitives::v2::CandidateCommitments, + ) -> Result { + Ok(self + .rpc_client + .parachain_host_check_validation_outputs(at, para_id, outputs) + .await?) + } + + async fn session_index_for_child( + &self, + at: Hash, + ) -> Result { + Ok(self.rpc_client.parachain_host_session_index_for_child(at).await?) + } + + async fn validation_code( + &self, + at: Hash, + para_id: cumulus_primitives_core::ParaId, + assumption: polkadot_primitives::v2::OccupiedCoreAssumption, + ) -> Result, sp_api::ApiError> { + Ok(self.rpc_client.parachain_host_validation_code(at, para_id, assumption).await?) + } + + async fn candidate_pending_availability( + &self, + at: Hash, + para_id: cumulus_primitives_core::ParaId, + ) -> Result>, sp_api::ApiError> + { + Ok(self + .rpc_client + .parachain_host_candidate_pending_availability(at, para_id) + .await?) + } + + async fn candidate_events( + &self, + at: Hash, + ) -> Result>, sp_api::ApiError> { + Ok(self.rpc_client.parachain_host_candidate_events(at).await?) + } + + async fn dmq_contents( + &self, + at: Hash, + recipient: cumulus_primitives_core::ParaId, + ) -> Result< + Vec>, + sp_api::ApiError, + > { + Ok(self.rpc_client.parachain_host_dmq_contents(recipient, at).await?) + } + + async fn inbound_hrmp_channels_contents( + &self, + at: Hash, + recipient: cumulus_primitives_core::ParaId, + ) -> Result< + std::collections::BTreeMap< + cumulus_primitives_core::ParaId, + Vec< + polkadot_core_primitives::InboundHrmpMessage, + >, + >, + sp_api::ApiError, + > { + Ok(self + .rpc_client + .parachain_host_inbound_hrmp_channels_contents(recipient, at) + .await?) + } + + async fn validation_code_by_hash( + &self, + at: Hash, + validation_code_hash: polkadot_primitives::v2::ValidationCodeHash, + ) -> Result, sp_api::ApiError> { + Ok(self + .rpc_client + .parachain_host_validation_code_by_hash(at, validation_code_hash) + .await?) + } + + async fn on_chain_votes( + &self, + at: Hash, + ) -> Result>, sp_api::ApiError> { + Ok(self.rpc_client.parachain_host_on_chain_votes(at).await?) + } + + async fn session_info( + &self, + at: Hash, + index: polkadot_primitives::v2::SessionIndex, + ) -> Result, sp_api::ApiError> { + Ok(self.rpc_client.parachain_host_session_info(at, index).await?) + } + + async fn session_info_before_version_2( + &self, + at: Hash, + index: polkadot_primitives::v2::SessionIndex, + ) -> Result, sp_api::ApiError> { + Ok(self.rpc_client.parachain_host_session_info_before_version_2(at, index).await?) + } + + async fn submit_pvf_check_statement( + &self, + at: Hash, + stmt: polkadot_primitives::v2::PvfCheckStatement, + signature: polkadot_primitives::v2::ValidatorSignature, + ) -> Result<(), sp_api::ApiError> { + Ok(self + .rpc_client + .parachain_host_submit_pvf_check_statement(at, stmt, signature) + .await?) + } + + async fn pvfs_require_precheck( + &self, + at: Hash, + ) -> Result, sp_api::ApiError> { + Ok(self.rpc_client.parachain_host_pvfs_require_precheck(at).await?) + } + + async fn validation_code_hash( + &self, + at: Hash, + para_id: cumulus_primitives_core::ParaId, + assumption: polkadot_primitives::v2::OccupiedCoreAssumption, + ) -> Result, sp_api::ApiError> { + Ok(self + .rpc_client + .parachain_host_validation_code_hash(at, para_id, assumption) + .await?) + } + + async fn current_epoch(&self, at: Hash) -> Result { + Ok(self.rpc_client.babe_api_current_epoch(at).await?) + } + + async fn authorities( + &self, + at: Hash, + ) -> std::result::Result, sp_api::ApiError> { + Ok(self.rpc_client.authority_discovery_authorities(at).await?) + } + + async fn api_version_parachain_host(&self, at: Hash) -> Result, sp_api::ApiError> { + let api_id = >::ID; + Ok(self.rpc_client.runtime_version(at).await.map(|v| v.api_version(&api_id))?) + } + + async fn disputes( + &self, + at: Hash, + ) -> Result< + Vec<( + polkadot_primitives::v2::SessionIndex, + polkadot_primitives::v2::CandidateHash, + polkadot_primitives::v2::DisputeState, + )>, + ApiError, + > { + Ok(self.rpc_client.parachain_host_staging_get_disputes(at).await?) + } +} + +#[async_trait::async_trait] +impl AuthorityDiscovery for BlockChainRpcClient { + async fn authorities( + &self, + at: Hash, + ) -> std::result::Result, sp_api::ApiError> { + let result = self.rpc_client.authority_discovery_authorities(at).await?; + Ok(result) + } +} + +impl BlockChainRpcClient { + pub async fn local_listen_addresses( + &self, + ) -> Result, RelayChainError> { + let addresses = self.rpc_client.system_local_listen_addresses().await?; + tracing::debug!(target: LOG_TARGET, ?addresses, "Fetched listen address from RPC node."); + + let mut result_vec = Vec::new(); + for address in addresses { + match MultiaddrWithPeerId::from_str(&address) { + Ok(addr) => result_vec.push(addr), + Err(err) => + return Err(RelayChainError::GenericError(format!( + "Failed to parse a local listen addresses from the RPC node: {}", + err + ))), + } + } + + Ok(result_vec) + } + + pub async fn import_notification_stream( + &self, + ) -> RelayChainResult + Send>>> { + Ok(self.rpc_client.get_imported_heads_stream().await?.boxed()) + } + + pub async fn finality_notification_stream( + &self, + ) -> RelayChainResult + Send>>> { + Ok(self.rpc_client.get_finalized_heads_stream().await?.boxed()) + } +} + +fn block_local(fut: impl Future) -> T { + let tokio_handle = tokio::runtime::Handle::current(); + tokio::task::block_in_place(|| tokio_handle.block_on(fut)) +} + +impl HeaderBackend for BlockChainRpcClient { + fn header( + &self, + id: BlockId, + ) -> sp_blockchain::Result::Header>> { + let fetch_header = |hash| block_local(self.rpc_client.chain_get_header(Some(hash))); + + match id { + BlockId::Hash(hash) => Ok(fetch_header(hash)?), + BlockId::Number(number) => { + if let Some(hash) = HeaderBackend::::hash(self, number)? { + Ok(fetch_header(hash)?) + } else { + Ok(None) + } + }, + } + } + + fn info(&self) -> Info { + let best_header = block_local(self.rpc_client.chain_get_header(None)) + .expect("Unable to get header from relay chain.") + .unwrap(); + let genesis_hash = block_local(self.rpc_client.chain_get_head(Some(0))) + .expect("Unable to get header from relay chain."); + let finalized_head = block_local(self.rpc_client.chain_get_finalized_head()) + .expect("Unable to get finalized head from relay chain."); + let finalized_header = block_local(self.rpc_client.chain_get_header(Some(finalized_head))) + .expect("Unable to get finalized header from relay chain.") + .unwrap(); + Info { + best_hash: best_header.hash(), + best_number: best_header.number, + genesis_hash, + finalized_hash: finalized_head, + finalized_number: finalized_header.number, + finalized_state: None, + number_leaves: 1, + block_gap: None, + } + } + + fn status( + &self, + id: sp_api::BlockId, + ) -> sp_blockchain::Result { + let exists = match id { + BlockId::Hash(_) => self.header(id)?.is_some(), + BlockId::Number(n) => { + let best_header = block_local(self.rpc_client.chain_get_header(None))?; + if let Some(best) = best_header { + n < best.number + } else { + false + } + }, + }; + + if exists { + Ok(sc_client_api::blockchain::BlockStatus::InChain) + } else { + Ok(sc_client_api::blockchain::BlockStatus::Unknown) + } + } + + fn number( + &self, + hash: ::Hash, + ) -> sp_blockchain::Result< + Option<<::Header as polkadot_service::HeaderT>::Number>, + > { + let result = block_local(self.rpc_client.chain_get_header(Some(hash)))? + .map(|maybe_header| maybe_header.number); + Ok(result) + } + + fn hash( + &self, + number: polkadot_service::NumberFor, + ) -> sp_blockchain::Result::Hash>> { + Ok(block_local(self.rpc_client.chain_get_block_hash(number.into()))?) + } +} diff --git a/client/relay-chain-minimal-node/src/collator_overseer.rs b/client/relay-chain-minimal-node/src/collator_overseer.rs new file mode 100644 index 0000000000..6efb1a9ce2 --- /dev/null +++ b/client/relay-chain-minimal-node/src/collator_overseer.rs @@ -0,0 +1,274 @@ +// Copyright 2022 Parity Technologies (UK) Ltd. +// This file is part of Polkadot. + +// Polkadot is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// Polkadot is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with Polkadot. If not, see . + +use cumulus_relay_chain_interface::RelayChainError; +use lru::LruCache; +use polkadot_availability_distribution::{ + AvailabilityDistributionSubsystem, IncomingRequestReceivers, +}; +use polkadot_node_core_av_store::Config; +use polkadot_node_network_protocol::{ + peer_set::PeerSetProtocolNames, + request_response::{ + v1::{ + AvailableDataFetchingRequest, ChunkFetchingRequest, CollationFetchingRequest, + PoVFetchingRequest, + }, + IncomingRequestReceiver, ReqProtocolNames, + }, +}; +use polkadot_node_subsystem_util::metrics::{prometheus::Registry, Metrics}; +use polkadot_overseer::{ + BlockInfo, DummySubsystem, MetricsTrait, Overseer, OverseerHandle, OverseerMetrics, SpawnGlue, + KNOWN_LEAVES_CACHE_SIZE, +}; +use polkadot_primitives::v2::CollatorPair; +use polkadot_service::{ + overseer::{ + AvailabilityRecoverySubsystem, AvailabilityStoreSubsystem, ChainApiSubsystem, + CollationGenerationSubsystem, CollatorProtocolSubsystem, NetworkBridgeMetrics, + NetworkBridgeRxSubsystem, NetworkBridgeTxSubsystem, ProtocolSide, RuntimeApiSubsystem, + }, + Error, OverseerConnector, +}; +use sc_authority_discovery::Service as AuthorityDiscoveryService; +use sc_keystore::LocalKeystore; +use sc_network::NetworkStateInfo; + +use std::sync::Arc; + +use cumulus_primitives_core::relay_chain::{Block, Hash as PHash}; + +use polkadot_service::{Handle, TaskManager}; + +use crate::BlockChainRpcClient; +use futures::{select, StreamExt}; +use sp_runtime::traits::Block as BlockT; + +/// Arguments passed for overseer construction. +pub(crate) struct CollatorOverseerGenArgs<'a> { + /// Runtime client generic, providing the `ProvieRuntimeApi` trait besides others. + pub runtime_client: Arc, + /// Underlying network service implementation. + pub network_service: Arc>, + /// Underlying authority discovery service. + pub authority_discovery_service: AuthorityDiscoveryService, + // Receiver for collation request protocol + pub collation_req_receiver: IncomingRequestReceiver, + // Receiver for PoV request protocol + pub pov_req_receiver: IncomingRequestReceiver, + // Receiver for chunk request protocol + pub chunk_req_receiver: IncomingRequestReceiver, + // Receiver for availability request protocol + pub available_data_req_receiver: IncomingRequestReceiver, + /// Prometheus registry, commonly used for production systems, less so for test. + pub registry: Option<&'a Registry>, + /// Task spawner to be used throughout the overseer and the APIs it provides. + pub spawner: sc_service::SpawnTaskHandle, + /// Determines the behavior of the collator. + pub collator_pair: CollatorPair, + /// Request response protocols + pub req_protocol_names: ReqProtocolNames, + /// Peerset protocols name mapping + pub peer_set_protocol_names: PeerSetProtocolNames, + /// Config for the availability store + pub availability_config: Config, + /// The underlying key value store for the parachains. + pub parachains_db: Arc, +} + +fn build_overseer<'a>( + connector: OverseerConnector, + CollatorOverseerGenArgs { + runtime_client, + network_service, + authority_discovery_service, + collation_req_receiver, + available_data_req_receiver, + availability_config, + registry, + spawner, + collator_pair, + req_protocol_names, + peer_set_protocol_names, + parachains_db, + pov_req_receiver, + chunk_req_receiver, + }: CollatorOverseerGenArgs<'a>, +) -> Result< + (Overseer, Arc>, OverseerHandle), + Error, +> { + let leaves = Vec::new(); + let metrics = ::register(registry)?; + let keystore = Arc::new(LocalKeystore::in_memory()); + let spawner = SpawnGlue(spawner); + let network_bridge_metrics: NetworkBridgeMetrics = Metrics::register(registry)?; + let builder = Overseer::builder() + .availability_distribution(AvailabilityDistributionSubsystem::new( + keystore.clone(), + IncomingRequestReceivers { pov_req_receiver, chunk_req_receiver }, + Metrics::register(registry)?, + )) + .availability_recovery(AvailabilityRecoverySubsystem::with_chunks_only( + available_data_req_receiver, + Metrics::register(registry)?, + )) + .availability_store(AvailabilityStoreSubsystem::new( + parachains_db.clone(), + availability_config, + Metrics::register(registry)?, + )) + .bitfield_distribution(DummySubsystem) + .bitfield_signing(DummySubsystem) + .candidate_backing(DummySubsystem) + .candidate_validation(DummySubsystem) + .pvf_checker(DummySubsystem) + .chain_api(ChainApiSubsystem::new(runtime_client.clone(), Metrics::register(registry)?)) + .collation_generation(CollationGenerationSubsystem::new(Metrics::register(registry)?)) + .collator_protocol({ + let side = ProtocolSide::Collator( + network_service.local_peer_id().clone(), + collator_pair, + collation_req_receiver, + Metrics::register(registry)?, + ); + CollatorProtocolSubsystem::new(side) + }) + .network_bridge_rx(NetworkBridgeRxSubsystem::new( + network_service.clone(), + authority_discovery_service.clone(), + Box::new(network_service.clone()), + network_bridge_metrics.clone(), + peer_set_protocol_names.clone(), + )) + .network_bridge_tx(NetworkBridgeTxSubsystem::new( + network_service.clone(), + authority_discovery_service.clone(), + network_bridge_metrics, + req_protocol_names, + peer_set_protocol_names, + )) + .provisioner(DummySubsystem) + .runtime_api(RuntimeApiSubsystem::new( + runtime_client.clone(), + Metrics::register(registry)?, + spawner.clone(), + )) + .statement_distribution(DummySubsystem) + .approval_distribution(DummySubsystem) + .approval_voting(DummySubsystem) + .gossip_support(DummySubsystem) + .dispute_coordinator(DummySubsystem) + .dispute_distribution(DummySubsystem) + .chain_selection(DummySubsystem) + .leaves(Vec::from_iter( + leaves + .into_iter() + .map(|BlockInfo { hash, parent_hash: _, number }| (hash, number)), + )) + .activation_external_listeners(Default::default()) + .span_per_active_leaf(Default::default()) + .active_leaves(Default::default()) + .supports_parachains(runtime_client) + .known_leaves(LruCache::new(KNOWN_LEAVES_CACHE_SIZE)) + .metrics(metrics) + .spawner(spawner); + + builder.build_with_connector(connector).map_err(|e| e.into()) +} + +pub(crate) fn spawn_overseer( + overseer_args: CollatorOverseerGenArgs, + task_manager: &TaskManager, + relay_chain_rpc_client: Arc, +) -> Result { + let (overseer, overseer_handle) = build_overseer(OverseerConnector::default(), overseer_args) + .map_err(|e| { + tracing::error!("Failed to initialize overseer: {}", e); + e + })?; + + let overseer_handle = Handle::new(overseer_handle.clone()); + { + let handle = overseer_handle.clone(); + task_manager.spawn_essential_handle().spawn_blocking( + "overseer", + None, + Box::pin(async move { + use futures::{pin_mut, FutureExt}; + + let forward = forward_collator_events(relay_chain_rpc_client, handle).fuse(); + + let overseer_fut = overseer.run().fuse(); + + pin_mut!(overseer_fut); + pin_mut!(forward); + + select! { + _ = forward => (), + _ = overseer_fut => (), + } + }), + ); + } + Ok(overseer_handle) +} + +/// Minimal relay chain node representation +pub struct NewMinimalNode { + /// Task manager running all tasks for the minimal node + pub task_manager: TaskManager, + /// Overseer handle to interact with subsystems + pub overseer_handle: Handle, + /// Network service + pub network: Arc::Hash>>, +} + +/// Glues together the [`Overseer`] and `BlockchainEvents` by forwarding +/// import and finality notifications into the [`OverseerHandle`]. +async fn forward_collator_events( + client: Arc, + mut handle: Handle, +) -> Result<(), RelayChainError> { + let mut finality = client.finality_notification_stream().await?.fuse(); + let mut imports = client.import_notification_stream().await?.fuse(); + + loop { + select! { + f = finality.next() => { + match f { + Some(header) => { + tracing::info!(target: "minimal-polkadot-node", "Received finalized block via RPC: #{} ({})", header.number, header.hash()); + let block_info = BlockInfo { hash: header.hash(), parent_hash: header.parent_hash, number: header.number }; + handle.block_finalized(block_info).await; + } + None => return Err(RelayChainError::GenericError("Relay chain finality stream ended.".to_string())), + } + }, + i = imports.next() => { + match i { + Some(header) => { + tracing::info!(target: "minimal-polkadot-node", "Received imported block via RPC: #{} ({})", header.number, header.hash()); + let block_info = BlockInfo { hash: header.hash(), parent_hash: header.parent_hash, number: header.number }; + handle.block_imported(block_info).await; + } + None => return Err(RelayChainError::GenericError("Relay chain import stream ended.".to_string())), + } + } + } + } +} diff --git a/client/relay-chain-minimal-node/src/lib.rs b/client/relay-chain-minimal-node/src/lib.rs new file mode 100644 index 0000000000..60b8a809a9 --- /dev/null +++ b/client/relay-chain-minimal-node/src/lib.rs @@ -0,0 +1,223 @@ +// Copyright 2017-2022 Parity Technologies (UK) Ltd. +// This file is part of Polkadot. + +// Polkadot is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// Polkadot is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with Polkadot. If not, see . + +use collator_overseer::{CollatorOverseerGenArgs, NewMinimalNode}; + +use cumulus_relay_chain_interface::{RelayChainError, RelayChainInterface, RelayChainResult}; +use cumulus_relay_chain_rpc_interface::{RelayChainRpcInterface, Url}; +use polkadot_network_bridge::{peer_sets_info, IsAuthority}; +use polkadot_node_network_protocol::{ + peer_set::PeerSetProtocolNames, + request_response::{self, IncomingRequest, ReqProtocolNames}, +}; +use polkadot_node_subsystem_util::metrics::prometheus::Registry; +use polkadot_primitives::v2::CollatorPair; + +use sc_authority_discovery::Service as AuthorityDiscoveryService; +use sc_network::{Event, NetworkService}; +use sc_network_common::service::NetworkEventStream; +use std::sync::Arc; + +use polkadot_service::{open_database, Configuration, TaskManager}; + +use futures::StreamExt; + +use sp_runtime::{app_crypto::Pair, traits::Block as BlockT}; + +mod collator_overseer; + +mod network; + +mod blockchain_rpc_client; +pub use blockchain_rpc_client::BlockChainRpcClient; + +fn build_authority_discovery_service( + task_manager: &TaskManager, + client: Arc, + config: &Configuration, + network: Arc::Hash>>, + prometheus_registry: Option, +) -> AuthorityDiscoveryService { + let auth_disc_publish_non_global_ips = config.network.allow_non_globals_in_dht; + let authority_discovery_role = sc_authority_discovery::Role::Discover; + let dht_event_stream = network.event_stream("authority-discovery").filter_map(|e| async move { + match e { + Event::Dht(e) => Some(e), + _ => None, + } + }); + let (worker, service) = sc_authority_discovery::new_worker_and_service_with_config( + sc_authority_discovery::WorkerConfig { + publish_non_global_ips: auth_disc_publish_non_global_ips, + // Require that authority discovery records are signed. + strict_record_validation: true, + ..Default::default() + }, + client, + network.clone(), + Box::pin(dht_event_stream), + authority_discovery_role, + prometheus_registry.clone(), + ); + + task_manager.spawn_handle().spawn( + "authority-discovery-worker", + Some("authority-discovery"), + worker.run(), + ); + service +} + +pub async fn build_minimal_relay_chain_node( + polkadot_config: Configuration, + task_manager: &mut TaskManager, + relay_chain_url: Url, +) -> RelayChainResult<(Arc<(dyn RelayChainInterface + 'static)>, Option)> { + let client = cumulus_relay_chain_rpc_interface::create_client_and_start_worker( + relay_chain_url, + task_manager, + ) + .await?; + let collator_pair = CollatorPair::generate().0; + let collator_node = new_minimal_relay_chain( + polkadot_config, + collator_pair.clone(), + Arc::new(BlockChainRpcClient::new(client.clone())), + ) + .await?; + task_manager.add_child(collator_node.task_manager); + Ok(( + Arc::new(RelayChainRpcInterface::new(client, collator_node.overseer_handle)), + Some(collator_pair), + )) +} + +/// Builds a minimal relay chain node. Chain data is fetched +/// via [`BlockChainRpcClient`] and fed into the overseer and its subsystems. +/// +/// Instead of spawning all subsystems, this minimal node will only spawn subsystems +/// required to collate: +/// - AvailabilityRecovery +/// - CollationGeneration +/// - CollatorProtocol +/// - NetworkBridgeRx +/// - NetworkBridgeTx +/// - RuntimeApi +/// - ChainApi +/// - AvailabilityDistribution +#[sc_tracing::logging::prefix_logs_with("Relaychain")] +async fn new_minimal_relay_chain( + mut config: Configuration, + collator_pair: CollatorPair, + relay_chain_rpc_client: Arc, +) -> Result { + let role = config.role.clone(); + + // Use the given RPC node as bootnode, since we do not have a chain spec with valid boot nodes + let mut boot_node_address = relay_chain_rpc_client.local_listen_addresses().await?; + config.network.boot_nodes.append(&mut boot_node_address); + + let task_manager = { + let registry = config.prometheus_config.as_ref().map(|cfg| &cfg.registry); + TaskManager::new(config.tokio_handle.clone(), registry)? + }; + + let prometheus_registry = config.prometheus_registry().cloned(); + + let genesis_hash = relay_chain_rpc_client + .block_get_hash(Some(0)) + .await + .expect("Genesis block hash is always available; qed") + .unwrap_or_default(); + + let peer_set_protocol_names = + PeerSetProtocolNames::new(genesis_hash, config.chain_spec.fork_id()); + let is_authority = if role.is_authority() { IsAuthority::Yes } else { IsAuthority::No }; + config + .network + .extra_sets + .extend(peer_sets_info(is_authority, &peer_set_protocol_names)); + + let request_protocol_names = ReqProtocolNames::new(genesis_hash, config.chain_spec.fork_id()); + let (collation_req_receiver, available_data_req_receiver, pov_req_receiver, chunk_req_receiver) = + build_request_response_protocol_receivers(&request_protocol_names, &mut config); + let (network, network_starter) = + network::build_collator_network(network::BuildCollatorNetworkParams { + config: &config, + client: relay_chain_rpc_client.clone(), + spawn_handle: task_manager.spawn_handle(), + genesis_hash, + })?; + + let authority_discovery_service = build_authority_discovery_service( + &task_manager, + relay_chain_rpc_client.clone(), + &config, + network.clone(), + prometheus_registry.clone(), + ); + + let parachains_db = open_database(&config.database)?; + + let overseer_args = CollatorOverseerGenArgs { + runtime_client: relay_chain_rpc_client.clone(), + network_service: network.clone(), + authority_discovery_service, + collation_req_receiver, + available_data_req_receiver, + registry: prometheus_registry.as_ref(), + spawner: task_manager.spawn_handle(), + collator_pair, + req_protocol_names: request_protocol_names, + peer_set_protocol_names, + parachains_db, + availability_config: polkadot_service::AVAILABILITY_CONFIG, + pov_req_receiver, + chunk_req_receiver, + }; + + let overseer_handle = collator_overseer::spawn_overseer( + overseer_args, + &task_manager, + relay_chain_rpc_client.clone(), + )?; + + network_starter.start_network(); + + Ok(NewMinimalNode { task_manager, overseer_handle, network }) +} + +fn build_request_response_protocol_receivers( + request_protocol_names: &ReqProtocolNames, + config: &mut Configuration, +) -> ( + request_response::IncomingRequestReceiver, + request_response::IncomingRequestReceiver, + request_response::IncomingRequestReceiver, + request_response::IncomingRequestReceiver, +) { + let (collation_req_receiver, cfg) = + IncomingRequest::get_config_receiver(request_protocol_names); + config.network.request_response_protocols.push(cfg); + let (available_data_req_receiver, cfg) = + IncomingRequest::get_config_receiver(request_protocol_names); + config.network.request_response_protocols.push(cfg); + let (pov_req_receiver, cfg) = IncomingRequest::get_config_receiver(request_protocol_names); + config.network.request_response_protocols.push(cfg); + let (chunk_req_receiver, cfg) = IncomingRequest::get_config_receiver(request_protocol_names); + config.network.request_response_protocols.push(cfg); + (collation_req_receiver, available_data_req_receiver, pov_req_receiver, chunk_req_receiver) +} diff --git a/client/relay-chain-minimal-node/src/network.rs b/client/relay-chain-minimal-node/src/network.rs new file mode 100644 index 0000000000..a5237f5ea6 --- /dev/null +++ b/client/relay-chain-minimal-node/src/network.rs @@ -0,0 +1,384 @@ +// Copyright 2022 Parity Technologies (UK) Ltd. +// This file is part of Cumulus. + +// Cumulus is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// Cumulus is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with Cumulus. If not, see . + +use polkadot_core_primitives::{Block, Hash}; +use polkadot_service::{BlockT, NumberFor}; + +use polkadot_node_network_protocol::PeerId; +use sc_network::{NetworkService, SyncState}; + +use sc_network_common::sync::{Metrics, SyncStatus}; +use sc_network_light::light_client_requests; +use sc_network_sync::{block_request_handler, state_request_handler}; +use sc_service::{error::Error, Configuration, NetworkStarter, SpawnTaskHandle}; +use sp_consensus::BlockOrigin; +use sp_runtime::Justifications; + +use std::sync::Arc; + +use crate::BlockChainRpcClient; + +pub(crate) struct BuildCollatorNetworkParams<'a> { + /// The service configuration. + pub config: &'a Configuration, + /// A shared client returned by `new_full_parts`. + pub client: Arc, + /// A handle for spawning tasks. + pub spawn_handle: SpawnTaskHandle, + /// Genesis hash + pub genesis_hash: Hash, +} + +/// Build the network service, the network status sinks and an RPC sender. +pub(crate) fn build_collator_network( + params: BuildCollatorNetworkParams, +) -> Result<(Arc>, NetworkStarter), Error> { + let BuildCollatorNetworkParams { config, client, spawn_handle, genesis_hash } = params; + + let protocol_id = config.protocol_id(); + + let block_request_protocol_config = + block_request_handler::generate_protocol_config(&protocol_id, genesis_hash, None); + + let state_request_protocol_config = + state_request_handler::generate_protocol_config(&protocol_id, genesis_hash, None); + + let light_client_request_protocol_config = + light_client_requests::generate_protocol_config(&protocol_id, genesis_hash, None); + + let network_params = sc_network::config::Params { + role: config.role.clone(), + executor: { + let spawn_handle = Clone::clone(&spawn_handle); + Some(Box::new(move |fut| { + spawn_handle.spawn("libp2p-node", Some("networking"), fut); + })) + }, + fork_id: None, + chain_sync: Box::new(DummyChainSync), + network_config: config.network.clone(), + chain: client.clone(), + import_queue: Box::new(DummyImportQueue), + protocol_id, + metrics_registry: config.prometheus_config.as_ref().map(|config| config.registry.clone()), + block_request_protocol_config, + state_request_protocol_config, + warp_sync_protocol_config: None, + light_client_request_protocol_config, + request_response_protocol_configs: Vec::new(), + }; + + let network_worker = sc_network::NetworkWorker::new(network_params)?; + let network_service = network_worker.service().clone(); + + let (network_start_tx, network_start_rx) = futures::channel::oneshot::channel(); + + // The network worker is responsible for gathering all network messages and processing + // them. This is quite a heavy task, and at the time of the writing of this comment it + // frequently happens that this future takes several seconds or in some situations + // even more than a minute until it has processed its entire queue. This is clearly an + // issue, and ideally we would like to fix the network future to take as little time as + // possible, but we also take the extra harm-prevention measure to execute the networking + // future using `spawn_blocking`. + spawn_handle.spawn_blocking("network-worker", Some("networking"), async move { + if network_start_rx.await.is_err() { + tracing::warn!( + "The NetworkStart returned as part of `build_network` has been silently dropped" + ); + // This `return` might seem unnecessary, but we don't want to make it look like + // everything is working as normal even though the user is clearly misusing the API. + return + } + + network_worker.await + }); + + let network_starter = NetworkStarter::new(network_start_tx); + + Ok((network_service, network_starter)) +} + +/// Empty ChainSync shell. Syncing code is not necessary for +/// the minimal node, but network currently requires it. So +/// we provide a noop implementation. +struct DummyChainSync; + +impl sc_network_common::sync::ChainSync for DummyChainSync { + fn peer_info(&self, _who: &PeerId) -> Option> { + None + } + + fn status(&self) -> sc_network_common::sync::SyncStatus { + SyncStatus { + state: SyncState::Idle, + best_seen_block: None, + num_peers: 0, + queued_blocks: 0, + state_sync: None, + warp_sync: None, + } + } + + fn num_sync_requests(&self) -> usize { + 0 + } + + fn num_downloaded_blocks(&self) -> usize { + 0 + } + + fn num_peers(&self) -> usize { + 0 + } + + fn new_peer( + &mut self, + _who: PeerId, + _best_hash: ::Hash, + _best_number: polkadot_service::NumberFor, + ) -> Result< + Option>, + sc_network_common::sync::BadPeer, + > { + Ok(None) + } + + fn update_chain_info( + &mut self, + _best_hash: &::Hash, + _best_number: polkadot_service::NumberFor, + ) { + } + + fn request_justification( + &mut self, + _hash: &::Hash, + _number: polkadot_service::NumberFor, + ) { + } + + fn clear_justification_requests(&mut self) {} + + fn set_sync_fork_request( + &mut self, + _peers: Vec, + _hash: &::Hash, + _number: polkadot_service::NumberFor, + ) { + } + + fn justification_requests( + &mut self, + ) -> Box)> + '_> + { + Box::new(std::iter::empty()) + } + + fn block_requests( + &mut self, + ) -> Box)> + '_> + { + Box::new(std::iter::empty()) + } + + fn state_request(&mut self) -> Option<(PeerId, sc_network_common::sync::OpaqueStateRequest)> { + None + } + + fn warp_sync_request( + &mut self, + ) -> Option<(PeerId, sc_network_common::sync::warp::WarpProofRequest)> { + None + } + + fn on_block_data( + &mut self, + _who: &PeerId, + _request: Option>, + _response: sc_network_common::sync::message::BlockResponse, + ) -> Result, sc_network_common::sync::BadPeer> { + unimplemented!("Not supported on the RPC collator") + } + + fn on_state_data( + &mut self, + _who: &PeerId, + _response: sc_network_common::sync::OpaqueStateResponse, + ) -> Result, sc_network_common::sync::BadPeer> { + unimplemented!("Not supported on the RPC collator") + } + + fn on_warp_sync_data( + &mut self, + _who: &PeerId, + _response: sc_network_common::sync::warp::EncodedProof, + ) -> Result<(), sc_network_common::sync::BadPeer> { + unimplemented!("Not supported on the RPC collator") + } + + fn on_block_justification( + &mut self, + _who: PeerId, + _response: sc_network_common::sync::message::BlockResponse, + ) -> Result, sc_network_common::sync::BadPeer> + { + unimplemented!("Not supported on the RPC collator") + } + + fn on_blocks_processed( + &mut self, + _imported: usize, + _count: usize, + _results: Vec<( + Result< + sc_consensus::BlockImportStatus>, + sc_consensus::BlockImportError, + >, + ::Hash, + )>, + ) -> Box< + dyn Iterator< + Item = Result< + (PeerId, sc_network_common::sync::message::BlockRequest), + sc_network_common::sync::BadPeer, + >, + >, + > { + Box::new(std::iter::empty()) + } + + fn on_justification_import( + &mut self, + _hash: ::Hash, + _number: polkadot_service::NumberFor, + _success: bool, + ) { + } + + fn on_block_finalized( + &mut self, + _hash: &::Hash, + _number: polkadot_service::NumberFor, + ) { + } + + fn push_block_announce_validation( + &mut self, + _who: PeerId, + _hash: ::Hash, + _announce: sc_network_common::sync::message::BlockAnnounce<::Header>, + _is_best: bool, + ) { + } + + fn poll_block_announce_validation( + &mut self, + _cx: &mut std::task::Context, + ) -> std::task::Poll::Header>> + { + std::task::Poll::Pending + } + + fn peer_disconnected( + &mut self, + _who: &PeerId, + ) -> Option> { + None + } + + fn metrics(&self) -> sc_network_common::sync::Metrics { + Metrics { + queued_blocks: 0, + fork_targets: 0, + justifications: sc_network_common::sync::metrics::Metrics { + pending_requests: 0, + active_requests: 0, + importing_requests: 0, + failed_requests: 0, + }, + } + } + + fn create_opaque_block_request( + &self, + _request: &sc_network_common::sync::message::BlockRequest, + ) -> sc_network_common::sync::OpaqueBlockRequest { + unimplemented!("Not supported on the RPC collator") + } + + fn encode_block_request( + &self, + _request: &sc_network_common::sync::OpaqueBlockRequest, + ) -> Result, String> { + unimplemented!("Not supported on the RPC collator") + } + + fn decode_block_response( + &self, + _response: &[u8], + ) -> Result { + unimplemented!("Not supported on the RPC collator") + } + + fn block_response_into_blocks( + &self, + _request: &sc_network_common::sync::message::BlockRequest, + _response: sc_network_common::sync::OpaqueBlockResponse, + ) -> Result>, String> { + unimplemented!("Not supported on the RPC collator") + } + + fn encode_state_request( + &self, + _request: &sc_network_common::sync::OpaqueStateRequest, + ) -> Result, String> { + unimplemented!("Not supported on the RPC collator") + } + + fn decode_state_response( + &self, + _response: &[u8], + ) -> Result { + unimplemented!("Not supported on the RPC collator") + } +} + +struct DummyImportQueue; + +impl sc_service::ImportQueue for DummyImportQueue { + fn import_blocks( + &mut self, + _origin: BlockOrigin, + _blocks: Vec>, + ) { + } + + fn import_justifications( + &mut self, + _who: PeerId, + _hash: Hash, + _number: NumberFor, + _justifications: Justifications, + ) { + } + + fn poll_actions( + &mut self, + _cx: &mut futures::task::Context, + _link: &mut dyn sc_consensus::import_queue::Link, + ) { + } +} diff --git a/client/relay-chain-rpc-interface/Cargo.toml b/client/relay-chain-rpc-interface/Cargo.toml index fe2f957010..d694862d21 100644 --- a/client/relay-chain-rpc-interface/Cargo.toml +++ b/client/relay-chain-rpc-interface/Cargo.toml @@ -11,8 +11,11 @@ polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "m cumulus-primitives-core = { path = "../../primitives/core" } cumulus-relay-chain-interface = { path = "../relay-chain-interface" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/client/relay-chain-rpc-interface/src/lib.rs b/client/relay-chain-rpc-interface/src/lib.rs index f295c693ec..1d35ec4e74 100644 --- a/client/relay-chain-rpc-interface/src/lib.rs +++ b/client/relay-chain-rpc-interface/src/lib.rs @@ -44,11 +44,12 @@ const TIMEOUT_IN_SECONDS: u64 = 6; #[derive(Clone)] pub struct RelayChainRpcInterface { rpc_client: RelayChainRpcClient, + overseer_handle: Handle, } impl RelayChainRpcInterface { - pub fn new(rpc_client: RelayChainRpcClient) -> Self { - Self { rpc_client } + pub fn new(rpc_client: RelayChainRpcClient, overseer_handle: Handle) -> Self { + Self { rpc_client, overseer_handle } } } @@ -118,15 +119,15 @@ impl RelayChainInterface for RelayChainRpcInterface { } async fn best_block_hash(&self) -> RelayChainResult { - self.rpc_client.chain_get_head().await + self.rpc_client.chain_get_head(None).await } async fn is_major_syncing(&self) -> RelayChainResult { self.rpc_client.system_health().await.map(|h| h.is_syncing) } - fn overseer_handle(&self) -> RelayChainResult> { - unimplemented!("Overseer handle is not available on relay-chain-rpc-interface"); + fn overseer_handle(&self) -> RelayChainResult { + Ok(self.overseer_handle.clone()) } async fn get_storage_by_key( diff --git a/client/relay-chain-rpc-interface/src/rpc_client.rs b/client/relay-chain-rpc-interface/src/rpc_client.rs index 71014b18e0..3422248735 100644 --- a/client/relay-chain-rpc-interface/src/rpc_client.rs +++ b/client/relay-chain-rpc-interface/src/rpc_client.rs @@ -17,8 +17,13 @@ use backoff::{future::retry_notify, ExponentialBackoff}; use cumulus_primitives_core::{ relay_chain::{ - v2::{CommittedCandidateReceipt, OccupiedCoreAssumption, SessionIndex, ValidatorId}, - Hash as PHash, Header as PHeader, InboundHrmpMessage, + v2::{ + CandidateCommitments, CandidateEvent, CommittedCandidateReceipt, CoreState, + DisputeState, GroupRotationInfo, OccupiedCoreAssumption, OldV1SessionInfo, + PvfCheckStatement, ScrapedOnChainVotes, SessionIndex, SessionInfo, ValidationCode, + ValidationCodeHash, ValidatorId, ValidatorIndex, ValidatorSignature, + }, + CandidateHash, Hash as PHash, Header as PHeader, InboundHrmpMessage, }, InboundDownwardMessage, ParaId, PersistedValidationData, }; @@ -37,9 +42,11 @@ use jsonrpsee::{ ws_client::WsClientBuilder, }; use parity_scale_codec::{Decode, Encode}; -use polkadot_service::TaskManager; +use polkadot_service::{BlockNumber, TaskManager}; use sc_client_api::StorageData; use sc_rpc_api::{state::ReadProof, system::Health}; +use sp_api::RuntimeVersion; +use sp_consensus_babe::Epoch; use sp_core::sp_std::collections::btree_map::BTreeMap; use sp_runtime::DeserializeOwned; use sp_storage::StorageKey; @@ -253,8 +260,6 @@ impl RelayChainRpcClient { Decode::decode(&mut &*res.0).map_err(Into::into) } - /// Subscribe to a notification stream via RPC - /// Perform RPC request async fn request<'a, R>( &self, @@ -300,10 +305,69 @@ impl RelayChainRpcClient { RelayChainError::RpcCallError(method.to_string(), err)}) } + /// Returns information regarding the current epoch. + pub async fn babe_api_current_epoch(&self, at: PHash) -> Result { + self.call_remote_runtime_function("BabeApi_current_epoch", at, None::<()>).await + } + + /// Old method to fetch v1 session info. + pub async fn parachain_host_session_info_before_version_2( + &self, + at: PHash, + index: SessionIndex, + ) -> Result, RelayChainError> { + self.call_remote_runtime_function( + "ParachainHost_session_info_before_version_2", + at, + Some(index), + ) + .await + } + + /// Scrape dispute relevant from on-chain, backing votes and resolved disputes. + pub async fn parachain_host_on_chain_votes( + &self, + at: PHash, + ) -> Result>, RelayChainError> { + self.call_remote_runtime_function("ParachainHost_on_chain_votes", at, None::<()>) + .await + } + + /// Returns code hashes of PVFs that require pre-checking by validators in the active set. + pub async fn parachain_host_pvfs_require_precheck( + &self, + at: PHash, + ) -> Result, RelayChainError> { + self.call_remote_runtime_function("ParachainHost_pvfs_require_precheck", at, None::<()>) + .await + } + + /// Submits a PVF pre-checking statement into the transaction pool. + pub async fn parachain_host_submit_pvf_check_statement( + &self, + at: PHash, + stmt: PvfCheckStatement, + signature: ValidatorSignature, + ) -> Result<(), RelayChainError> { + self.call_remote_runtime_function( + "ParachainHost_submit_pvf_check_statement", + at, + Some((stmt, signature)), + ) + .await + } + + /// Get local listen address of the node + pub async fn system_local_listen_addresses(&self) -> Result, RelayChainError> { + self.request("system_localListenAddresses", None).await + } + + /// Get system health information pub async fn system_health(&self) -> Result { self.request("system_health", None).await } + /// Get read proof for `storage_keys` pub async fn state_get_read_proof( &self, storage_keys: Vec, @@ -313,6 +377,7 @@ impl RelayChainRpcClient { self.request("state_getReadProof", params).await } + /// Retrieve storage item at `storage_key` pub async fn state_get_storage( &self, storage_key: StorageKey, @@ -322,47 +387,85 @@ impl RelayChainRpcClient { self.request("state_getStorage", params).await } - pub async fn chain_get_head(&self) -> Result { - self.request("chain_getHead", None).await + /// Get hash of the n-th block in the canon chain. + /// + /// By default returns latest block hash. + pub async fn chain_get_head(&self, at: Option) -> Result { + let params = rpc_params!(at); + self.request("chain_getHead", params).await } - pub async fn chain_get_header( + /// Returns the validator groups and rotation info localized based on the hypothetical child + /// of a block whose state this is invoked on. Note that `now` in the `GroupRotationInfo` + /// should be the successor of the number of the block. + pub async fn parachain_host_validator_groups( &self, - hash: Option, - ) -> Result, RelayChainError> { - let params = rpc_params!(hash); - self.request("chain_getHeader", params).await + at: PHash, + ) -> Result<(Vec>, GroupRotationInfo), RelayChainError> { + self.call_remote_runtime_function("ParachainHost_validator_groups", at, None::<()>) + .await } - pub async fn parachain_host_candidate_pending_availability( + /// Get a vector of events concerning candidates that occurred within a block. + pub async fn parachain_host_candidate_events( + &self, + at: PHash, + ) -> Result, RelayChainError> { + self.call_remote_runtime_function("ParachainHost_candidate_events", at, None::<()>) + .await + } + + /// Checks if the given validation outputs pass the acceptance criteria. + pub async fn parachain_host_check_validation_outputs( &self, at: PHash, para_id: ParaId, - ) -> Result, RelayChainError> { + outputs: CandidateCommitments, + ) -> Result { self.call_remote_runtime_function( - "ParachainHost_candidate_pending_availability", + "ParachainHost_check_validation_outputs", at, - Some(para_id), + Some((para_id, outputs)), ) .await } - pub async fn parachain_host_session_index_for_child( + /// Returns the persisted validation data for the given `ParaId` along with the corresponding + /// validation code hash. Instead of accepting assumption about the para, matches the validation + /// data hash against an expected one and yields `None` if they're not equal. + pub async fn parachain_host_assumed_validation_data( &self, at: PHash, - ) -> Result { - self.call_remote_runtime_function("ParachainHost_session_index_for_child", at, None::<()>) - .await + para_id: ParaId, + expected_hash: PHash, + ) -> Result, RelayChainError> { + self.call_remote_runtime_function( + "ParachainHost_persisted_assumed_validation_data", + at, + Some((para_id, expected_hash)), + ) + .await } - pub async fn parachain_host_validators( + /// Get hash of last finalized block. + pub async fn chain_get_finalized_head(&self) -> Result { + self.request("chain_getFinalizedHead", None).await + } + + /// Get hash of n-th block. + pub async fn chain_get_block_hash( &self, - at: PHash, - ) -> Result, RelayChainError> { - self.call_remote_runtime_function("ParachainHost_validators", at, None::<()>) - .await + block_number: Option, + ) -> Result, RelayChainError> { + let params = rpc_params!(block_number); + self.request("chain_getBlockHash", params).await } + /// Yields the persisted validation data for the given `ParaId` along with an assumption that + /// should be used if the para currently occupies a core. + /// + /// Returns `None` if either the para is not registered or the assumption is `Freed` + /// and the para already occupies a core. pub async fn parachain_host_persisted_validation_data( &self, at: PHash, @@ -377,6 +480,143 @@ impl RelayChainRpcClient { .await } + /// Get the validation code from its hash. + pub async fn parachain_host_validation_code_by_hash( + &self, + at: PHash, + validation_code_hash: ValidationCodeHash, + ) -> Result, RelayChainError> { + self.call_remote_runtime_function( + "ParachainHost_validation_code_by_hash", + at, + Some(validation_code_hash), + ) + .await + } + + /// Yields information on all availability cores as relevant to the child block. + /// Cores are either free or occupied. Free cores can have paras assigned to them. + pub async fn parachain_host_availability_cores( + &self, + at: PHash, + ) -> Result>, RelayChainError> { + self.call_remote_runtime_function("ParachainHost_availability_cores", at, None::<()>) + .await + } + + /// Get runtime version + pub async fn runtime_version(&self, at: PHash) -> Result { + let params = rpc_params!(at); + self.request("state_getRuntimeVersion", params).await + } + + /// Returns all onchain disputes. + /// This is a staging method! Do not use on production runtimes! + pub async fn parachain_host_staging_get_disputes( + &self, + at: PHash, + ) -> Result)>, RelayChainError> { + self.call_remote_runtime_function("ParachainHost_staging_get_disputes", at, None::<()>) + .await + } + + pub async fn authority_discovery_authorities( + &self, + at: PHash, + ) -> Result, RelayChainError> { + self.call_remote_runtime_function("AuthorityDiscoveryApi_authorities", at, None::<()>) + .await + } + + /// Fetch the validation code used by a para, making the given `OccupiedCoreAssumption`. + /// + /// Returns `None` if either the para is not registered or the assumption is `Freed` + /// and the para already occupies a core. + pub async fn parachain_host_validation_code( + &self, + at: PHash, + para_id: ParaId, + occupied_core_assumption: OccupiedCoreAssumption, + ) -> Result, RelayChainError> { + self.call_remote_runtime_function( + "ParachainHost_validation_code", + at, + Some((para_id, occupied_core_assumption)), + ) + .await + } + + /// Fetch the hash of the validation code used by a para, making the given `OccupiedCoreAssumption`. + pub async fn parachain_host_validation_code_hash( + &self, + at: PHash, + para_id: ParaId, + occupied_core_assumption: OccupiedCoreAssumption, + ) -> Result, RelayChainError> { + self.call_remote_runtime_function( + "ParachainHost_validation_code_hash", + at, + Some((para_id, occupied_core_assumption)), + ) + .await + } + + /// Get the session info for the given session, if stored. + pub async fn parachain_host_session_info( + &self, + at: PHash, + index: SessionIndex, + ) -> Result, RelayChainError> { + self.call_remote_runtime_function("ParachainHost_session_info", at, Some(index)) + .await + } + + /// Get header at specified hash + pub async fn chain_get_header( + &self, + hash: Option, + ) -> Result, RelayChainError> { + let params = rpc_params!(hash); + self.request("chain_getHeader", params).await + } + + /// Get the receipt of a candidate pending availability. This returns `Some` for any paras + /// assigned to occupied cores in `availability_cores` and `None` otherwise. + pub async fn parachain_host_candidate_pending_availability( + &self, + at: PHash, + para_id: ParaId, + ) -> Result, RelayChainError> { + self.call_remote_runtime_function( + "ParachainHost_candidate_pending_availability", + at, + Some(para_id), + ) + .await + } + + /// Returns the session index expected at a child of the block. + /// + /// This can be used to instantiate a `SigningContext`. + pub async fn parachain_host_session_index_for_child( + &self, + at: PHash, + ) -> Result { + self.call_remote_runtime_function("ParachainHost_session_index_for_child", at, None::<()>) + .await + } + + /// Get the current validators. + pub async fn parachain_host_validators( + &self, + at: PHash, + ) -> Result, RelayChainError> { + self.call_remote_runtime_function("ParachainHost_validators", at, None::<()>) + .await + } + + /// Get the contents of all channels addressed to the given recipient. Channels that have no + /// messages in them are also included. pub async fn parachain_host_inbound_hrmp_channels_contents( &self, para_id: ParaId, @@ -390,6 +630,7 @@ impl RelayChainRpcClient { .await } + /// Get all the pending inbound messages in the downward message queue for a para. pub async fn parachain_host_dmq_contents( &self, para_id: ParaId, @@ -399,15 +640,7 @@ impl RelayChainRpcClient { .await } - fn send_register_message_to_worker( - &self, - message: NotificationRegisterMessage, - ) -> Result<(), RelayChainError> { - self.to_worker_channel - .try_send(message) - .map_err(|e| RelayChainError::WorkerCommunicationError(e.to_string())) - } - + /// Get a stream of all imported relay chain headers pub async fn get_imported_heads_stream(&self) -> Result, RelayChainError> { let (tx, rx) = futures::channel::mpsc::channel::(NOTIFICATION_CHANNEL_SIZE_LIMIT); self.send_register_message_to_worker(NotificationRegisterMessage::RegisterImportListener( @@ -416,6 +649,7 @@ impl RelayChainRpcClient { Ok(rx) } + /// Get a stream of new best relay chain headers pub async fn get_best_heads_stream(&self) -> Result, RelayChainError> { let (tx, rx) = futures::channel::mpsc::channel::(NOTIFICATION_CHANNEL_SIZE_LIMIT); self.send_register_message_to_worker( @@ -424,6 +658,7 @@ impl RelayChainRpcClient { Ok(rx) } + /// Get a stream of finalized relay chain headers pub async fn get_finalized_heads_stream(&self) -> Result, RelayChainError> { let (tx, rx) = futures::channel::mpsc::channel::(NOTIFICATION_CHANNEL_SIZE_LIMIT); self.send_register_message_to_worker( @@ -432,6 +667,15 @@ impl RelayChainRpcClient { Ok(rx) } + fn send_register_message_to_worker( + &self, + message: NotificationRegisterMessage, + ) -> Result<(), RelayChainError> { + self.to_worker_channel + .try_send(message) + .map_err(|e| RelayChainError::WorkerCommunicationError(e.to_string())) + } + async fn subscribe_imported_heads( ws_client: &JsonRpcClient, ) -> Result, RelayChainError> { diff --git a/client/service/src/lib.rs b/client/service/src/lib.rs index 269112b162..067ca1c83f 100644 --- a/client/service/src/lib.rs +++ b/client/service/src/lib.rs @@ -18,7 +18,6 @@ //! //! Provides functions for starting a collator node or a normal full node. -use cumulus_client_cli::CollatorOptions; use cumulus_client_consensus_common::ParachainConsensus; use cumulus_primitives_core::{CollectCollationInfo, ParaId}; use cumulus_relay_chain_interface::RelayChainInterface; @@ -108,8 +107,7 @@ where let overseer_handle = relay_chain_interface .overseer_handle() - .map_err(|e| sc_service::Error::Application(Box::new(e)))? - .ok_or_else(|| "Polkadot full node did not provide an `OverseerHandle`!")?; + .map_err(|e| sc_service::Error::Application(Box::new(e)))?; let pov_recovery = cumulus_client_pov_recovery::PoVRecovery::new( overseer_handle.clone(), @@ -149,7 +147,6 @@ pub struct StartFullNodeParams<'a, Block: BlockT, Client, RCInterface, IQ> { pub announce_block: Arc>) + Send + Sync>, pub relay_chain_slot_duration: Duration, pub import_queue: IQ, - pub collator_options: CollatorOptions, } /// Start a full node for a parachain. @@ -165,7 +162,6 @@ pub fn start_full_node( para_id, relay_chain_slot_duration, import_queue, - collator_options, }: StartFullNodeParams, ) -> sc_service::error::Result<()> where @@ -193,18 +189,9 @@ where .spawn_essential_handle() .spawn("cumulus-consensus", None, consensus); - // PoV Recovery is currently not supported when we connect to the - // relay chain via RPC, so we return early. The node will work, but not be able to recover PoVs from the - // relay chain if blocks are not announced on parachain. This will be enabled again once - // https://github.com/paritytech/cumulus/issues/545 is finished. - if collator_options.relay_chain_rpc_url.is_some() { - return Ok(()) - } - let overseer_handle = relay_chain_interface .overseer_handle() - .map_err(|e| sc_service::Error::Application(Box::new(e)))? - .ok_or_else(|| "Polkadot full node did not provide an `OverseerHandle`!")?; + .map_err(|e| sc_service::Error::Application(Box::new(e)))?; let pov_recovery = cumulus_client_pov_recovery::PoVRecovery::new( overseer_handle, diff --git a/parachain-template/node/Cargo.toml b/parachain-template/node/Cargo.toml index a1b1408936..6db0087fff 100644 --- a/parachain-template/node/Cargo.toml +++ b/parachain-template/node/Cargo.toml @@ -70,6 +70,7 @@ cumulus-primitives-parachain-inherent = { path = "../../primitives/parachain-inh cumulus-relay-chain-inprocess-interface = { path = "../../client/relay-chain-inprocess-interface" } cumulus-relay-chain-interface = { path = "../../client/relay-chain-interface" } cumulus-relay-chain-rpc-interface = { path = "../../client/relay-chain-rpc-interface" } +cumulus-relay-chain-minimal-node = { path = "../../client/relay-chain-minimal-node" } [build-dependencies] substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/parachain-template/node/src/command.rs b/parachain-template/node/src/command.rs index 7f7bfd140a..ee497b413f 100644 --- a/parachain-template/node/src/command.rs +++ b/parachain-template/node/src/command.rs @@ -4,7 +4,7 @@ use codec::Encode; use cumulus_client_cli::generate_genesis_block; use cumulus_primitives_core::ParaId; use frame_benchmarking_cli::{BenchmarkCmd, SUBSTRATE_REFERENCE_HARDWARE}; -use log::info; +use log::{info, warn}; use parachain_template_runtime::{Block, RuntimeApi}; use sc_cli::{ ChainSpec, CliConfiguration, DefaultConfigurationValues, ImportParams, KeystoreParams, @@ -304,6 +304,10 @@ pub fn run() -> Result<()> { info!("Parachain genesis state: {}", genesis_state); info!("Is collating: {}", if config.role.is_authority() { "yes" } else { "no" }); + if collator_options.relay_chain_rpc_url.is_some() && cli.relay_chain_args.len() > 0 { + warn!("Detected relay chain node arguments together with --relay-chain-rpc-url. This command starts a minimal Polkadot node that only uses a network-related subset of all relay chain CLI options."); + } + crate::service::start_parachain_node( config, polkadot_config, diff --git a/parachain-template/node/src/service.rs b/parachain-template/node/src/service.rs index a4dda55574..91d8d54244 100644 --- a/parachain-template/node/src/service.rs +++ b/parachain-template/node/src/service.rs @@ -22,7 +22,7 @@ use cumulus_client_service::{ use cumulus_primitives_core::ParaId; use cumulus_relay_chain_inprocess_interface::build_inprocess_relay_chain; use cumulus_relay_chain_interface::{RelayChainError, RelayChainInterface, RelayChainResult}; -use cumulus_relay_chain_rpc_interface::{create_client_and_start_worker, RelayChainRpcInterface}; +use cumulus_relay_chain_minimal_node::build_minimal_relay_chain_node; // Substrate Imports use sc_executor::NativeElseWasmExecutor; @@ -176,10 +176,8 @@ async fn build_relay_chain_interface( hwbench: Option, ) -> RelayChainResult<(Arc<(dyn RelayChainInterface + 'static)>, Option)> { match collator_options.relay_chain_rpc_url { - Some(relay_chain_url) => { - let client = create_client_and_start_worker(relay_chain_url, task_manager).await?; - Ok((Arc::new(RelayChainRpcInterface::new(client)) as Arc<_>, None)) - }, + Some(relay_chain_url) => + build_minimal_relay_chain_node(polkadot_config, task_manager, relay_chain_url).await, None => build_inprocess_relay_chain( polkadot_config, parachain_config, @@ -365,7 +363,6 @@ where )?; let spawner = task_manager.spawn_handle(); - let params = StartCollatorParams { para_id: id, block_status: client.clone(), @@ -390,7 +387,6 @@ where relay_chain_interface, relay_chain_slot_duration, import_queue, - collator_options, }; start_full_node(params)?; diff --git a/polkadot-parachain/Cargo.toml b/polkadot-parachain/Cargo.toml index 68b5830bd0..356662560f 100644 --- a/polkadot-parachain/Cargo.toml +++ b/polkadot-parachain/Cargo.toml @@ -83,6 +83,7 @@ cumulus-primitives-parachain-inherent = { path = "../primitives/parachain-inhere cumulus-relay-chain-interface = { path = "../client/relay-chain-interface" } cumulus-relay-chain-inprocess-interface = { path = "../client/relay-chain-inprocess-interface" } cumulus-relay-chain-rpc-interface = { path = "../client/relay-chain-rpc-interface" } +cumulus-relay-chain-minimal-node = { path = "../client/relay-chain-minimal-node" } [build-dependencies] substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/polkadot-parachain/src/cli.rs b/polkadot-parachain/src/cli.rs index c99e545983..36a4cfd562 100644 --- a/polkadot-parachain/src/cli.rs +++ b/polkadot-parachain/src/cli.rs @@ -83,7 +83,7 @@ pub struct Cli { pub no_hardware_benchmarks: bool, /// Relay chain arguments - #[clap(raw = true, conflicts_with = "relay-chain-rpc-url")] + #[clap(raw = true)] pub relaychain_args: Vec, } diff --git a/polkadot-parachain/src/command.rs b/polkadot-parachain/src/command.rs index 0c3fbe6702..fbffbc03c1 100644 --- a/polkadot-parachain/src/command.rs +++ b/polkadot-parachain/src/command.rs @@ -26,7 +26,7 @@ use codec::Encode; use cumulus_client_cli::generate_genesis_block; use cumulus_primitives_core::ParaId; use frame_benchmarking_cli::{BenchmarkCmd, SUBSTRATE_REFERENCE_HARDWARE}; -use log::info; +use log::{info, warn}; use parachains_common::{AuraId, StatemintAuraId}; use sc_cli::{ ChainSpec, CliConfiguration, DefaultConfigurationValues, ImportParams, KeystoreParams, @@ -678,6 +678,10 @@ pub fn run() -> Result<()> { info!("Parachain genesis state: {}", genesis_state); info!("Is collating: {}", if config.role.is_authority() { "yes" } else { "no" }); + if collator_options.relay_chain_rpc_url.is_some() && cli.relaychain_args.len() > 0 { + warn!("Detected relay chain node arguments together with --relay-chain-rpc-url. This command starts a minimal Polkadot node that only uses a network-related subset of all relay chain CLI options."); + } + match config.chain_spec.runtime() { Runtime::Statemint => crate::service::start_generic_aura_node::< statemint_runtime::RuntimeApi, diff --git a/polkadot-parachain/src/service.rs b/polkadot-parachain/src/service.rs index 45f1431974..ca47af08ee 100644 --- a/polkadot-parachain/src/service.rs +++ b/polkadot-parachain/src/service.rs @@ -30,7 +30,7 @@ use cumulus_primitives_core::{ }; use cumulus_relay_chain_inprocess_interface::build_inprocess_relay_chain; use cumulus_relay_chain_interface::{RelayChainError, RelayChainInterface, RelayChainResult}; -use cumulus_relay_chain_rpc_interface::{create_client_and_start_worker, RelayChainRpcInterface}; +use cumulus_relay_chain_minimal_node::build_minimal_relay_chain_node; use polkadot_service::CollatorPair; use sp_core::Pair; @@ -267,10 +267,8 @@ async fn build_relay_chain_interface( hwbench: Option, ) -> RelayChainResult<(Arc<(dyn RelayChainInterface + 'static)>, Option)> { match collator_options.relay_chain_rpc_url { - Some(relay_chain_url) => { - let client = create_client_and_start_worker(relay_chain_url, task_manager).await?; - Ok((Arc::new(RelayChainRpcInterface::new(client)) as Arc<_>, None)) - }, + Some(relay_chain_url) => + build_minimal_relay_chain_node(polkadot_config, task_manager, relay_chain_url).await, None => build_inprocess_relay_chain( polkadot_config, parachain_config, @@ -467,7 +465,6 @@ where relay_chain_interface, relay_chain_slot_duration, import_queue, - collator_options, }; start_full_node(params)?; @@ -677,7 +674,6 @@ where relay_chain_interface, relay_chain_slot_duration, import_queue, - collator_options, }; start_full_node(params)?; @@ -1492,7 +1488,6 @@ where relay_chain_interface, relay_chain_slot_duration, import_queue, - collator_options, }; start_full_node(params)?; diff --git a/test/service/Cargo.toml b/test/service/Cargo.toml index 8d9c9c04fa..bd3f4b9c90 100644 --- a/test/service/Cargo.toml +++ b/test/service/Cargo.toml @@ -69,6 +69,7 @@ cumulus-relay-chain-interface = { path = "../../client/relay-chain-interface" } cumulus-relay-chain-rpc-interface = { path = "../../client/relay-chain-rpc-interface" } cumulus-test-relay-validation-worker-provider = { path = "../relay-validation-worker-provider" } cumulus-test-runtime = { path = "../runtime" } +cumulus-relay-chain-minimal-node = { path = "../../client/relay-chain-minimal-node" } [dev-dependencies] futures = "0.3.24" diff --git a/test/service/src/cli.rs b/test/service/src/cli.rs index 40b6379885..4cf4b92599 100644 --- a/test/service/src/cli.rs +++ b/test/service/src/cli.rs @@ -41,7 +41,7 @@ pub struct TestCollatorCli { pub parachain_id: u32, /// Relay chain arguments - #[clap(raw = true, conflicts_with = "relay-chain-rpc-url")] + #[clap(raw = true)] pub relaychain_args: Vec, #[clap(long)] diff --git a/test/service/src/lib.rs b/test/service/src/lib.rs index c211ece81d..9e9f5883f9 100644 --- a/test/service/src/lib.rs +++ b/test/service/src/lib.rs @@ -38,7 +38,8 @@ use cumulus_client_service::{ use cumulus_primitives_core::ParaId; use cumulus_relay_chain_inprocess_interface::RelayChainInProcessInterface; use cumulus_relay_chain_interface::{RelayChainError, RelayChainInterface, RelayChainResult}; -use cumulus_relay_chain_rpc_interface::{create_client_and_start_worker, RelayChainRpcInterface}; +use cumulus_relay_chain_minimal_node::build_minimal_relay_chain_node; + use cumulus_test_runtime::{Hash, Header, NodeBlock as Block, RuntimeApi}; use frame_system_rpc_runtime_api::AccountNonceApi; @@ -183,8 +184,9 @@ async fn build_relay_chain_interface( task_manager: &mut TaskManager, ) -> RelayChainResult> { if let Some(relay_chain_url) = collator_options.relay_chain_rpc_url { - let client = create_client_and_start_worker(relay_chain_url, task_manager).await?; - return Ok(Arc::new(RelayChainRpcInterface::new(client)) as Arc<_>) + return build_minimal_relay_chain_node(relay_chain_config, task_manager, relay_chain_url) + .await + .map(|r| r.0) } let relay_chain_full_node = polkadot_test_service::new_full( @@ -198,12 +200,15 @@ async fn build_relay_chain_interface( )?; task_manager.add_child(relay_chain_full_node.task_manager); + tracing::info!("Using inprocess node."); Ok(Arc::new(RelayChainInProcessInterface::new( relay_chain_full_node.client.clone(), relay_chain_full_node.backend.clone(), Arc::new(relay_chain_full_node.network.clone()), - relay_chain_full_node.overseer_handle, - )) as Arc<_>) + relay_chain_full_node.overseer_handle.ok_or(RelayChainError::GenericError( + "Overseer should be running in full node.".to_string(), + ))?, + ))) } /// Start a node with the given parachain `Configuration` and relay chain `Configuration`. @@ -367,7 +372,6 @@ where // the recovery delay of pov-recovery. We don't want to wait for too // long on the full node to recover, so we reduce this time here. relay_chain_slot_duration: Duration::from_millis(6), - collator_options, }; start_full_node(params)?; @@ -473,9 +477,9 @@ impl TestNodeBuilder { /// node. pub fn connect_to_parachain_nodes<'a>( mut self, - nodes: impl Iterator, + nodes: impl IntoIterator, ) -> Self { - self.parachain_nodes.extend(nodes.map(|n| n.addr.clone())); + self.parachain_nodes.extend(nodes.into_iter().map(|n| n.addr.clone())); self } diff --git a/test/service/src/main.rs b/test/service/src/main.rs index b87a8ed191..93be592a47 100644 --- a/test/service/src/main.rs +++ b/test/service/src/main.rs @@ -78,7 +78,8 @@ fn main() -> Result<(), sc_cli::Error> { }) }, None => { - let mut builder = sc_cli::LoggerBuilder::new(""); + let log_filters = cli.run.normalize().log_filters(); + let mut builder = sc_cli::LoggerBuilder::new(log_filters.unwrap_or_default()); builder.with_colors(true); let _ = builder.init(); diff --git a/zombienet_tests/0006-rpc_collator_builds_blocks.feature b/zombienet_tests/0006-rpc_collator_builds_blocks.feature new file mode 100644 index 0000000000..558e65f96d --- /dev/null +++ b/zombienet_tests/0006-rpc_collator_builds_blocks.feature @@ -0,0 +1,17 @@ +Description: RPC collator should build blocks +Network: ./0006-rpc_collator_builds_blocks.toml +Creds: config + +alice: is up +bob: is up +charlie: is up +one: is up +two: is up +dave: is up +eve: is up + +alice: parachain 2000 is registered within 225 seconds +alice: parachain 2000 block height is at least 10 within 250 seconds + +dave: reports block height is at least 12 within 250 seconds +eve: reports block height is at least 12 within 250 seconds diff --git a/zombienet_tests/0006-rpc_collator_builds_blocks.toml b/zombienet_tests/0006-rpc_collator_builds_blocks.toml new file mode 100644 index 0000000000..9414532682 --- /dev/null +++ b/zombienet_tests/0006-rpc_collator_builds_blocks.toml @@ -0,0 +1,46 @@ +[relaychain] +default_image = "{{RELAY_IMAGE}}" +default_command = "polkadot" +default_args = [ "-lparachain=debug" ] + +chain = "rococo-local" + + [[relaychain.nodes]] + name = "alice" + validator = true + + [[relaychain.nodes]] + name = "bob" + validator = true + + [[relaychain.nodes]] + name = "charlie" + validator = true + + [[relaychain.nodes]] + name = "one" + validator = false + + [[relaychain.nodes]] + name = "two" + validator = false + +[[parachains]] +id = 2000 +cumulus_based = true + + # run dave as parachain full node + [[parachains.collators]] + name = "dave" + validator = true + image = "{{COL_IMAGE}}" + command = "test-parachain" + args = ["-lparachain=debug,blockchain-rpc-client=debug", "--relay-chain-rpc-url {{'one'|zombie('wsUri')}}", "-- --bootnodes {{'one'|zombie('multiAddress')}}"] + + # run eve as parachain full node + [[parachains.collators]] + name = "eve" + validator = true + image = "{{COL_IMAGE}}" + command = "test-parachain" + args = ["-lparachain=debug,blockchain-rpc-client=debug", "--relay-chain-rpc-url {{'two'|zombie('wsUri')}}", "-- --bootnodes {{'two'|zombie('multiAddress')}}"] From 45ed36f3b88b02cf22ead5e7bc24db78d721ccb5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Oct 2022 10:08:40 +0200 Subject: [PATCH 13/48] Bump tracing from 0.1.36 to 0.1.37 (#1740) Bumps [tracing](https://github.com/tokio-rs/tracing) from 0.1.36 to 0.1.37. - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-0.1.36...tracing-0.1.37) --- updated-dependencies: - dependency-name: tracing dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 12 ++++++------ client/consensus/aura/Cargo.toml | 2 +- client/consensus/common/Cargo.toml | 2 +- client/consensus/relay-chain/Cargo.toml | 2 +- client/network/Cargo.toml | 2 +- client/pov-recovery/Cargo.toml | 2 +- client/relay-chain-minimal-node/Cargo.toml | 2 +- client/relay-chain-rpc-interface/Cargo.toml | 2 +- primitives/parachain-inherent/Cargo.toml | 2 +- test/service/Cargo.toml | 2 +- 10 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c5ab759922..b19778cd67 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -12394,9 +12394,9 @@ checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6" [[package]] name = "tracing" -version = "0.1.36" +version = "0.1.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307" +checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" dependencies = [ "cfg-if 1.0.0", "pin-project-lite 0.2.9", @@ -12406,9 +12406,9 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.22" +version = "0.1.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2" +checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" dependencies = [ "proc-macro2", "quote", @@ -12417,9 +12417,9 @@ dependencies = [ [[package]] name = "tracing-core" -version = "0.1.29" +version = "0.1.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7" +checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" dependencies = [ "once_cell", "valuable", diff --git a/client/consensus/aura/Cargo.toml b/client/consensus/aura/Cargo.toml index 9e3118c846..9dd29d950b 100644 --- a/client/consensus/aura/Cargo.toml +++ b/client/consensus/aura/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" async-trait = "0.1.57" codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] } futures = "0.3.24" -tracing = "0.1.36" +tracing = "0.1.37" # Substrate sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/client/consensus/common/Cargo.toml b/client/consensus/common/Cargo.toml index 42fa2fb53b..3f898ba7c5 100644 --- a/client/consensus/common/Cargo.toml +++ b/client/consensus/common/Cargo.toml @@ -10,7 +10,7 @@ async-trait = "0.1.57" codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] } dyn-clone = "1.0.9" futures = "0.3.24" -tracing = "0.1.36" +tracing = "0.1.37" # Substrate sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/client/consensus/relay-chain/Cargo.toml b/client/consensus/relay-chain/Cargo.toml index 7f4b07db86..86caa856ed 100644 --- a/client/consensus/relay-chain/Cargo.toml +++ b/client/consensus/relay-chain/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" async-trait = "0.1.57" futures = "0.3.24" parking_lot = "0.12.1" -tracing = "0.1.36" +tracing = "0.1.37" # Substrate sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/client/network/Cargo.toml b/client/network/Cargo.toml index 76b75fbd57..e24e30b7fd 100644 --- a/client/network/Cargo.toml +++ b/client/network/Cargo.toml @@ -11,7 +11,7 @@ codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "deriv futures = "0.3.24" futures-timer = "3.0.2" parking_lot = "0.12.1" -tracing = "0.1.36" +tracing = "0.1.37" # Substrate sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/client/pov-recovery/Cargo.toml b/client/pov-recovery/Cargo.toml index 530e3340ec..d892b889a0 100644 --- a/client/pov-recovery/Cargo.toml +++ b/client/pov-recovery/Cargo.toml @@ -10,7 +10,7 @@ codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "deriv futures = "0.3.24" futures-timer = "3.0.2" rand = "0.8.5" -tracing = "0.1.36" +tracing = "0.1.37" # Substrate sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/client/relay-chain-minimal-node/Cargo.toml b/client/relay-chain-minimal-node/Cargo.toml index 6c9cb25536..10022c0567 100644 --- a/client/relay-chain-minimal-node/Cargo.toml +++ b/client/relay-chain-minimal-node/Cargo.toml @@ -42,7 +42,7 @@ cumulus-relay-chain-rpc-interface = { path = "../relay-chain-rpc-interface" } cumulus-primitives-core = { path = "../../primitives/core" } lru = "0.8" -tracing = "0.1.25" +tracing = "0.1.37" async-trait = "0.1.52" futures = "0.3.24" url = "2.2.2" diff --git a/client/relay-chain-rpc-interface/Cargo.toml b/client/relay-chain-rpc-interface/Cargo.toml index d694862d21..22c1e26c9a 100644 --- a/client/relay-chain-rpc-interface/Cargo.toml +++ b/client/relay-chain-rpc-interface/Cargo.toml @@ -26,7 +26,7 @@ futures = "0.3.24" futures-timer = "3.0.2" parity-scale-codec = "3.2.1" jsonrpsee = { version = "0.15.1", features = ["ws-client"] } -tracing = "0.1.36" +tracing = "0.1.37" async-trait = "0.1.57" url = "2.3.1" backoff = { version = "0.4.0", features = ["tokio"] } diff --git a/primitives/parachain-inherent/Cargo.toml b/primitives/parachain-inherent/Cargo.toml index ebe971a116..fb6f3b1973 100644 --- a/primitives/parachain-inherent/Cargo.toml +++ b/primitives/parachain-inherent/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" async-trait = { version = "0.1.57", optional = true } codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [ "derive" ] } scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } -tracing = { version = "0.1.36", optional = true } +tracing = { version = "0.1.37", optional = true } # Substrate sc-client-api = { git = "https://github.com/paritytech/substrate", optional = true, branch = "master" } diff --git a/test/service/Cargo.toml b/test/service/Cargo.toml index bd3f4b9c90..b58fe264bf 100644 --- a/test/service/Cargo.toml +++ b/test/service/Cargo.toml @@ -17,7 +17,7 @@ jsonrpsee = { version = "0.15.1", features = ["server"] } rand = "0.8.5" serde = { version = "1.0.145", features = ["derive"] } tokio = { version = "1.21.1", features = ["macros"] } -tracing = "0.1.36" +tracing = "0.1.37" url = "2.3.1" # Substrate From 445440400e16d21a8e5951c62e40e35757c69643 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Oct 2022 10:58:33 +0200 Subject: [PATCH 14/48] Bump tokio from 1.21.1 to 1.21.2 (#1698) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.21.1 to 1.21.2. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.21.1...tokio-1.21.2) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 5 ++--- client/network/Cargo.toml | 2 +- client/pov-recovery/Cargo.toml | 2 +- client/relay-chain-minimal-node/Cargo.toml | 2 +- client/relay-chain-rpc-interface/Cargo.toml | 2 +- polkadot-parachain/Cargo.toml | 2 +- test/service/Cargo.toml | 2 +- 7 files changed, 8 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b19778cd67..3c977f5148 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -12297,9 +12297,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.21.1" +version = "1.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0020c875007ad96677dcc890298f4b942882c5d4eb7cc8f439fc3bf813dc9c95" +checksum = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099" dependencies = [ "autocfg", "bytes", @@ -12307,7 +12307,6 @@ dependencies = [ "memchr", "mio", "num_cpus", - "once_cell", "parking_lot 0.12.1", "pin-project-lite 0.2.9", "signal-hook-registry", diff --git a/client/network/Cargo.toml b/client/network/Cargo.toml index e24e30b7fd..73dff3703e 100644 --- a/client/network/Cargo.toml +++ b/client/network/Cargo.toml @@ -31,7 +31,7 @@ cumulus-relay-chain-interface = { path = "../relay-chain-interface" } [dev-dependencies] portpicker = "0.1.1" -tokio = { version = "1.21.1", features = ["macros"] } +tokio = { version = "1.21.2", features = ["macros"] } url = "2.3.1" # Substrate diff --git a/client/pov-recovery/Cargo.toml b/client/pov-recovery/Cargo.toml index d892b889a0..4653f7af37 100644 --- a/client/pov-recovery/Cargo.toml +++ b/client/pov-recovery/Cargo.toml @@ -30,7 +30,7 @@ cumulus-primitives-core = { path = "../../primitives/core" } cumulus-relay-chain-interface = {path = "../relay-chain-interface"} [dev-dependencies] -tokio = { version = "1.21.1", features = ["macros"] } +tokio = { version = "1.21.2", features = ["macros"] } portpicker = "0.1.1" # Cumulus diff --git a/client/relay-chain-minimal-node/Cargo.toml b/client/relay-chain-minimal-node/Cargo.toml index 10022c0567..de7958d534 100644 --- a/client/relay-chain-minimal-node/Cargo.toml +++ b/client/relay-chain-minimal-node/Cargo.toml @@ -46,4 +46,4 @@ tracing = "0.1.37" async-trait = "0.1.52" futures = "0.3.24" url = "2.2.2" -tokio = { version = "1.17.0", features = ["macros"] } +tokio = { version = "1.21.2", features = ["macros"] } diff --git a/client/relay-chain-rpc-interface/Cargo.toml b/client/relay-chain-rpc-interface/Cargo.toml index 22c1e26c9a..db5e7808f8 100644 --- a/client/relay-chain-rpc-interface/Cargo.toml +++ b/client/relay-chain-rpc-interface/Cargo.toml @@ -20,7 +20,7 @@ sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = " sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -tokio = { version = "1.21.1", features = ["sync"] } +tokio = { version = "1.21.2", features = ["sync"] } futures = "0.3.24" futures-timer = "3.0.2" diff --git a/polkadot-parachain/Cargo.toml b/polkadot-parachain/Cargo.toml index 356662560f..a871294aad 100644 --- a/polkadot-parachain/Cargo.toml +++ b/polkadot-parachain/Cargo.toml @@ -92,7 +92,7 @@ substrate-build-script-utils = { git = "https://github.com/paritytech/substrate" assert_cmd = "2.0" nix = "0.25" tempfile = "3.3.0" -tokio = { version = "1.21.1", features = ["macros", "time", "parking_lot"] } +tokio = { version = "1.21.2", features = ["macros", "time", "parking_lot"] } wait-timeout = "0.2" # purge_chain_works works with rococo-local and needs to allow this polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master", features = ["rococo-native"] } diff --git a/test/service/Cargo.toml b/test/service/Cargo.toml index b58fe264bf..1d4648d378 100644 --- a/test/service/Cargo.toml +++ b/test/service/Cargo.toml @@ -16,7 +16,7 @@ criterion = { version = "0.4.0", features = [ "async_tokio" ] } jsonrpsee = { version = "0.15.1", features = ["server"] } rand = "0.8.5" serde = { version = "1.0.145", features = ["derive"] } -tokio = { version = "1.21.1", features = ["macros"] } +tokio = { version = "1.21.2", features = ["macros"] } tracing = "0.1.37" url = "2.3.1" From 466725aad1c2e1274296d65889b1c57166b887fb Mon Sep 17 00:00:00 2001 From: Aaro Altonen <48052676+altonen@users.noreply.github.com> Date: Mon, 10 Oct 2022 14:38:54 +0300 Subject: [PATCH 15/48] Companion for paritytech/polkadot#6117 (#1749) * Companion for paritytech/polkadot#6117 * Fix code * Fix trait * update lockfile for {"polkadot", "substrate"} Co-authored-by: parity-processbot <> --- Cargo.lock | 513 +++++++++--------- client/relay-chain-minimal-node/Cargo.toml | 1 + .../relay-chain-minimal-node/src/network.rs | 72 ++- 3 files changed, 328 insertions(+), 258 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3c977f5148..19577f5087 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "beefy-primitives", "sp-api", @@ -536,13 +536,15 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "parity-scale-codec", "scale-info", "sp-api", "sp-application-crypto", "sp-core", + "sp-io", + "sp-mmr-primitives", "sp-runtime", "sp-std", ] @@ -2004,6 +2006,7 @@ dependencies = [ name = "cumulus-relay-chain-minimal-node" version = "0.1.0" dependencies = [ + "array-bytes", "async-trait", "cumulus-primitives-core", "cumulus-relay-chain-interface", @@ -2796,7 +2799,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "parity-scale-codec", ] @@ -2813,7 +2816,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-support", "frame-system", @@ -2836,7 +2839,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "Inflector", "array-bytes", @@ -2887,7 +2890,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2898,7 +2901,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2914,7 +2917,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-support", "frame-system", @@ -2943,7 +2946,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "bitflags", "frame-metadata", @@ -2975,7 +2978,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "Inflector", "cfg-expr", @@ -2989,7 +2992,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3001,7 +3004,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "proc-macro2", "quote", @@ -3011,7 +3014,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-support", "log", @@ -3029,7 +3032,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -3044,7 +3047,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "parity-scale-codec", "sp-api", @@ -3053,7 +3056,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-support", "parity-scale-codec", @@ -3920,7 +3923,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "beefy-primitives", "bitvec", @@ -4018,7 +4021,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "frame-support", "polkadot-primitives", @@ -5401,7 +5404,7 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5422,7 +5425,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-support", "frame-system", @@ -5439,7 +5442,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -5453,7 +5456,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-support", "frame-system", @@ -5469,7 +5472,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-support", "frame-system", @@ -5485,7 +5488,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-support", "frame-system", @@ -5500,7 +5503,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -5524,7 +5527,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5544,7 +5547,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -5559,7 +5562,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "beefy-primitives", "frame-support", @@ -5575,7 +5578,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5598,7 +5601,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -5616,7 +5619,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -5660,7 +5663,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -5677,7 +5680,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "bitflags", "frame-benchmarking", @@ -5706,7 +5709,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "bitflags", "parity-scale-codec", @@ -5718,7 +5721,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "proc-macro2", "quote", @@ -5728,7 +5731,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5745,7 +5748,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -5763,7 +5766,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5787,7 +5790,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5800,7 +5803,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -5818,7 +5821,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5839,7 +5842,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -5854,7 +5857,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -5877,7 +5880,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5893,7 +5896,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -5913,7 +5916,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -5930,7 +5933,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -5947,7 +5950,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5965,7 +5968,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5980,7 +5983,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -5996,7 +5999,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-support", "frame-system", @@ -6013,7 +6016,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6033,7 +6036,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "parity-scale-codec", "sp-api", @@ -6043,7 +6046,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-support", "frame-system", @@ -6060,7 +6063,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6083,7 +6086,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -6100,7 +6103,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -6115,7 +6118,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-support", "frame-system", @@ -6129,7 +6132,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -6147,7 +6150,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -6162,7 +6165,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6180,7 +6183,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -6196,7 +6199,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-support", "frame-system", @@ -6217,7 +6220,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -6233,7 +6236,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-support", "frame-system", @@ -6247,7 +6250,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6270,7 +6273,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6281,7 +6284,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "log", "sp-arithmetic", @@ -6290,7 +6293,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-support", "frame-system", @@ -6319,7 +6322,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -6337,7 +6340,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -6356,7 +6359,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-support", "frame-system", @@ -6372,7 +6375,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6387,7 +6390,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6398,7 +6401,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -6415,7 +6418,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -6430,7 +6433,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -6446,7 +6449,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -6461,7 +6464,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-benchmarking", "frame-support", @@ -6476,7 +6479,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "frame-support", "frame-system", @@ -6494,7 +6497,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "frame-benchmarking", "frame-support", @@ -6958,18 +6961,18 @@ dependencies = [ [[package]] name = "pin-project" -version = "1.0.10" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e" +checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.0.10" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb" +checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" dependencies = [ "proc-macro2", "quote", @@ -7048,7 +7051,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7063,7 +7066,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7077,7 +7080,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "derive_more", "fatality", @@ -7100,7 +7103,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "fatality", "futures", @@ -7121,7 +7124,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "clap", "frame-benchmarking-cli", @@ -7147,7 +7150,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7188,7 +7191,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "always-assert", "bitvec", @@ -7210,7 +7213,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7223,7 +7226,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "derive_more", "fatality", @@ -7248,7 +7251,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7262,7 +7265,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "futures", "futures-timer", @@ -7282,7 +7285,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "always-assert", "async-trait", @@ -7306,7 +7309,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "futures", "parity-scale-codec", @@ -7324,7 +7327,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "bitvec", "derive_more", @@ -7353,7 +7356,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "bitvec", "futures", @@ -7373,7 +7376,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "bitvec", "fatality", @@ -7392,7 +7395,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7407,7 +7410,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "async-trait", "futures", @@ -7425,7 +7428,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7440,7 +7443,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "futures", "futures-timer", @@ -7457,7 +7460,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "fatality", "futures", @@ -7476,7 +7479,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "async-trait", "futures", @@ -7493,7 +7496,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "bitvec", "fatality", @@ -7511,7 +7514,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "always-assert", "assert_matches", @@ -7543,7 +7546,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "futures", "polkadot-node-primitives", @@ -7559,7 +7562,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "futures", "memory-lru", @@ -7575,7 +7578,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "async-std", "lazy_static", @@ -7593,7 +7596,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "bs58", "futures", @@ -7612,7 +7615,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "async-trait", "derive_more", @@ -7635,7 +7638,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "bounded-vec", "futures", @@ -7657,7 +7660,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7667,7 +7670,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "async-trait", "futures", @@ -7685,7 +7688,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "async-trait", "derive_more", @@ -7708,7 +7711,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "async-trait", "derive_more", @@ -7741,7 +7744,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "async-trait", "futures", @@ -7764,7 +7767,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "derive_more", "frame-support", @@ -7862,7 +7865,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7877,7 +7880,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "bitvec", "frame-system", @@ -7907,7 +7910,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7939,7 +7942,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "beefy-primitives", "bitvec", @@ -8028,7 +8031,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "beefy-primitives", "bitvec", @@ -8075,7 +8078,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "frame-support", "polkadot-primitives", @@ -8087,7 +8090,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "bs58", "parity-scale-codec", @@ -8099,7 +8102,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "bitflags", "bitvec", @@ -8142,7 +8145,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "async-trait", "beefy-gadget", @@ -8247,7 +8250,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8268,7 +8271,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8278,7 +8281,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8303,7 +8306,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "beefy-primitives", "bitvec", @@ -8364,7 +8367,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "frame-benchmarking", "frame-system", @@ -8995,7 +8998,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9114,7 +9117,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9198,7 +9201,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "frame-support", "polkadot-primitives", @@ -9368,7 +9371,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "log", "sp-core", @@ -9379,7 +9382,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "async-trait", "futures", @@ -9406,7 +9409,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "futures", "futures-timer", @@ -9429,7 +9432,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9445,7 +9448,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9462,7 +9465,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9473,7 +9476,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "array-bytes", "chrono", @@ -9513,7 +9516,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "fnv", "futures", @@ -9541,7 +9544,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "hash-db", "kvdb", @@ -9566,7 +9569,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "async-trait", "futures", @@ -9590,7 +9593,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "async-trait", "futures", @@ -9619,7 +9622,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "async-trait", "fork-tree", @@ -9661,7 +9664,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "futures", "jsonrpsee", @@ -9683,7 +9686,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9696,7 +9699,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "async-trait", "futures", @@ -9720,7 +9723,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9747,7 +9750,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "environmental", "parity-scale-codec", @@ -9763,7 +9766,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "log", "parity-scale-codec", @@ -9778,7 +9781,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9798,7 +9801,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "ahash", "array-bytes", @@ -9839,7 +9842,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "finality-grandpa", "futures", @@ -9860,7 +9863,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "ansi_term", "futures", @@ -9877,7 +9880,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "array-bytes", "async-trait", @@ -9892,7 +9895,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "array-bytes", "async-trait", @@ -9939,7 +9942,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "cid", "futures", @@ -9959,7 +9962,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "async-trait", "bitflags", @@ -9985,7 +9988,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "ahash", "futures", @@ -10003,7 +10006,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "array-bytes", "futures", @@ -10024,7 +10027,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "array-bytes", "fork-tree", @@ -10052,7 +10055,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "array-bytes", "futures", @@ -10071,7 +10074,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "array-bytes", "bytes", @@ -10101,7 +10104,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "futures", "libp2p", @@ -10114,7 +10117,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10123,7 +10126,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "futures", "hash-db", @@ -10153,7 +10156,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "futures", "jsonrpsee", @@ -10176,7 +10179,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "futures", "jsonrpsee", @@ -10189,7 +10192,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "async-trait", "directories", @@ -10259,7 +10262,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "log", "parity-scale-codec", @@ -10273,7 +10276,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10292,7 +10295,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "futures", "libc", @@ -10311,7 +10314,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "chrono", "futures", @@ -10329,7 +10332,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "ansi_term", "atty", @@ -10360,7 +10363,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10371,7 +10374,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "futures", "futures-timer", @@ -10397,7 +10400,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "futures", "log", @@ -10410,7 +10413,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "futures", "futures-timer", @@ -10840,7 +10843,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "enumn", "parity-scale-codec", @@ -10916,7 +10919,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "hash-db", "log", @@ -10934,7 +10937,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "blake2", "proc-macro-crate", @@ -10946,7 +10949,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "parity-scale-codec", "scale-info", @@ -10959,7 +10962,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "integer-sqrt", "num-traits", @@ -10974,7 +10977,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "parity-scale-codec", "scale-info", @@ -10987,7 +10990,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "async-trait", "parity-scale-codec", @@ -10999,7 +11002,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "parity-scale-codec", "sp-api", @@ -11011,7 +11014,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "futures", "log", @@ -11029,7 +11032,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "async-trait", "futures", @@ -11048,7 +11051,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "async-trait", "parity-scale-codec", @@ -11066,7 +11069,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "async-trait", "merlin", @@ -11089,7 +11092,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "parity-scale-codec", "scale-info", @@ -11103,7 +11106,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "parity-scale-codec", "scale-info", @@ -11116,7 +11119,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "array-bytes", "base58", @@ -11162,7 +11165,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "blake2", "byteorder", @@ -11176,7 +11179,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "proc-macro2", "quote", @@ -11187,7 +11190,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11196,7 +11199,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "proc-macro2", "quote", @@ -11206,7 +11209,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "environmental", "parity-scale-codec", @@ -11217,7 +11220,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "finality-grandpa", "log", @@ -11235,7 +11238,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11249,7 +11252,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "bytes", "futures", @@ -11275,7 +11278,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "lazy_static", "sp-core", @@ -11286,7 +11289,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "async-trait", "futures", @@ -11303,7 +11306,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "thiserror", "zstd", @@ -11312,7 +11315,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "log", "parity-scale-codec", @@ -11328,7 +11331,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "parity-scale-codec", "scale-info", @@ -11342,7 +11345,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "sp-api", "sp-core", @@ -11352,7 +11355,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "backtrace", "lazy_static", @@ -11362,7 +11365,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "rustc-hash", "serde", @@ -11372,7 +11375,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "either", "hash256-std-hasher", @@ -11395,7 +11398,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11413,7 +11416,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "Inflector", "proc-macro-crate", @@ -11425,7 +11428,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "log", "parity-scale-codec", @@ -11439,7 +11442,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "serde", "serde_json", @@ -11448,7 +11451,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "parity-scale-codec", "scale-info", @@ -11462,7 +11465,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "parity-scale-codec", "scale-info", @@ -11473,7 +11476,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "hash-db", "log", @@ -11495,12 +11498,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11513,7 +11516,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "log", "sp-core", @@ -11526,7 +11529,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "async-trait", "futures-timer", @@ -11542,7 +11545,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "parity-scale-codec", "sp-std", @@ -11554,7 +11557,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "sp-api", "sp-runtime", @@ -11563,7 +11566,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "async-trait", "log", @@ -11579,7 +11582,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "ahash", "hash-db", @@ -11602,7 +11605,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11619,7 +11622,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11630,7 +11633,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "impl-trait-for-tuples", "log", @@ -11643,7 +11646,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11939,7 +11942,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "platforms", ] @@ -11947,7 +11950,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11968,7 +11971,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "futures-util", "hyper", @@ -11981,7 +11984,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "jsonrpsee", "log", @@ -12002,7 +12005,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "array-bytes", "async-trait", @@ -12028,7 +12031,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "futures", "substrate-test-utils-derive", @@ -12038,7 +12041,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12049,7 +12052,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "ansi_term", "build-helper", @@ -12157,7 +12160,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "frame-support", "polkadot-primitives", @@ -12437,7 +12440,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12448,7 +12451,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12575,7 +12578,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f447beec6eefbf452520b90cb0d199eaaf114342" +source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" dependencies = [ "clap", "frame-try-runtime", @@ -13163,7 +13166,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "beefy-primitives", "bitvec", @@ -13253,7 +13256,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "frame-support", "polkadot-primitives", @@ -13536,7 +13539,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13550,7 +13553,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "frame-support", "frame-system", @@ -13570,7 +13573,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "frame-benchmarking", "frame-support", @@ -13588,7 +13591,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#d12042f1a0a0e34ca274de9035ea35b6c016783f" +source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" dependencies = [ "Inflector", "proc-macro2", diff --git a/client/relay-chain-minimal-node/Cargo.toml b/client/relay-chain-minimal-node/Cargo.toml index de7958d534..cbc9bff901 100644 --- a/client/relay-chain-minimal-node/Cargo.toml +++ b/client/relay-chain-minimal-node/Cargo.toml @@ -41,6 +41,7 @@ cumulus-relay-chain-interface = { path = "../relay-chain-interface" } cumulus-relay-chain-rpc-interface = { path = "../relay-chain-rpc-interface" } cumulus-primitives-core = { path = "../../primitives/core" } +array-bytes = "4.1" lru = "0.8" tracing = "0.1.37" async-trait = "0.1.52" diff --git a/client/relay-chain-minimal-node/src/network.rs b/client/relay-chain-minimal-node/src/network.rs index a5237f5ea6..fa18418f62 100644 --- a/client/relay-chain-minimal-node/src/network.rs +++ b/client/relay-chain-minimal-node/src/network.rs @@ -20,14 +20,21 @@ use polkadot_service::{BlockT, NumberFor}; use polkadot_node_network_protocol::PeerId; use sc_network::{NetworkService, SyncState}; -use sc_network_common::sync::{Metrics, SyncStatus}; +use sc_client_api::HeaderBackend; +use sc_network_common::{ + config::{ + NonDefaultSetConfig, NonReservedPeerMode, NotificationHandshake, ProtocolId, SetConfig, + }, + protocol::role::Roles, + sync::{message::BlockAnnouncesHandshake, Metrics, SyncStatus}, +}; use sc_network_light::light_client_requests; use sc_network_sync::{block_request_handler, state_request_handler}; use sc_service::{error::Error, Configuration, NetworkStarter, SpawnTaskHandle}; use sp_consensus::BlockOrigin; use sp_runtime::Justifications; -use std::sync::Arc; +use std::{iter, sync::Arc}; use crate::BlockChainRpcClient; @@ -59,6 +66,16 @@ pub(crate) fn build_collator_network( let light_client_request_protocol_config = light_client_requests::generate_protocol_config(&protocol_id, genesis_hash, None); + let chain_sync = DummyChainSync; + let block_announce_config = chain_sync.get_block_announce_proto_config::( + protocol_id.clone(), + &None, + Roles::from(&config.role), + client.info().best_number, + client.info().best_hash, + genesis_hash, + ); + let network_params = sc_network::config::Params { role: config.role.clone(), executor: { @@ -68,12 +85,13 @@ pub(crate) fn build_collator_network( })) }, fork_id: None, - chain_sync: Box::new(DummyChainSync), + chain_sync: Box::new(chain_sync), network_config: config.network.clone(), chain: client.clone(), import_queue: Box::new(DummyImportQueue), protocol_id, metrics_registry: config.prometheus_config.as_ref().map(|config| config.registry.clone()), + block_announce_config, block_request_protocol_config, state_request_protocol_config, warp_sync_protocol_config: None, @@ -116,6 +134,54 @@ pub(crate) fn build_collator_network( /// we provide a noop implementation. struct DummyChainSync; +impl DummyChainSync { + pub fn get_block_announce_proto_config( + &self, + protocol_id: ProtocolId, + fork_id: &Option, + roles: Roles, + best_number: NumberFor, + best_hash: B::Hash, + genesis_hash: B::Hash, + ) -> NonDefaultSetConfig { + let block_announces_protocol = { + let genesis_hash = genesis_hash.as_ref(); + if let Some(ref fork_id) = fork_id { + format!( + "/{}/{}/block-announces/1", + array_bytes::bytes2hex("", genesis_hash), + fork_id + ) + } else { + format!("/{}/block-announces/1", array_bytes::bytes2hex("", genesis_hash)) + } + }; + + NonDefaultSetConfig { + notifications_protocol: block_announces_protocol.into(), + fallback_names: iter::once( + format!("/{}/block-announces/1", protocol_id.as_ref()).into(), + ) + .collect(), + max_notification_size: 1024 * 1024, + handshake: Some(NotificationHandshake::new(BlockAnnouncesHandshake::::build( + roles, + best_number, + best_hash, + genesis_hash, + ))), + // NOTE: `set_config` will be ignored by `protocol.rs` as the block announcement + // protocol is still hardcoded into the peerset. + set_config: SetConfig { + in_peers: 0, + out_peers: 0, + reserved_nodes: Vec::new(), + non_reserved_mode: NonReservedPeerMode::Deny, + }, + } + } +} + impl sc_network_common::sync::ChainSync for DummyChainSync { fn peer_info(&self, _who: &PeerId) -> Option> { None From 92956a3b89e257ccd708b97def1311b6295a994e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Oct 2022 23:36:52 +0200 Subject: [PATCH 16/48] Bump lru from 0.8.0 to 0.8.1 (#1751) Bumps [lru](https://github.com/jeromefroe/lru-rs) from 0.8.0 to 0.8.1. - [Release notes](https://github.com/jeromefroe/lru-rs/releases) - [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/jeromefroe/lru-rs/compare/0.8.0...0.8.1) --- updated-dependencies: - dependency-name: lru dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 19577f5087..5af051e7b7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2012,7 +2012,7 @@ dependencies = [ "cumulus-relay-chain-interface", "cumulus-relay-chain-rpc-interface", "futures", - "lru 0.8.0", + "lru 0.8.1", "polkadot-availability-distribution", "polkadot-core-primitives", "polkadot-network-bridge", @@ -4760,9 +4760,9 @@ dependencies = [ [[package]] name = "lru" -version = "0.8.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "936d98d2ddd79c18641c6709e7bb09981449694e402d1a0f0f657ea8d61f4a51" +checksum = "b6e8aaa3f231bb4bd57b84b2d5dc3ae7f350265df8aa96492e0bc394a1571909" dependencies = [ "hashbrown 0.12.3", ] @@ -4900,7 +4900,7 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ce95ae042940bad7e312857b929ee3d11b8f799a80cb7b9c7ec5125516906395" dependencies = [ - "lru 0.8.0", + "lru 0.8.1", ] [[package]] @@ -7085,7 +7085,7 @@ dependencies = [ "derive_more", "fatality", "futures", - "lru 0.8.0", + "lru 0.8.1", "parity-scale-codec", "polkadot-erasure-coding", "polkadot-node-network-protocol", @@ -7107,7 +7107,7 @@ source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec dependencies = [ "fatality", "futures", - "lru 0.8.0", + "lru 0.8.1", "parity-scale-codec", "polkadot-erasure-coding", "polkadot-node-network-protocol", @@ -7233,7 +7233,7 @@ dependencies = [ "futures", "futures-timer", "indexmap", - "lru 0.8.0", + "lru 0.8.1", "parity-scale-codec", "polkadot-erasure-coding", "polkadot-node-network-protocol", @@ -7334,7 +7334,7 @@ dependencies = [ "futures", "futures-timer", "kvdb", - "lru 0.8.0", + "lru 0.8.1", "merlin", "parity-scale-codec", "polkadot-node-jaeger", @@ -7465,7 +7465,7 @@ dependencies = [ "fatality", "futures", "kvdb", - "lru 0.8.0", + "lru 0.8.1", "parity-scale-codec", "polkadot-node-primitives", "polkadot-node-subsystem", @@ -7719,7 +7719,7 @@ dependencies = [ "futures", "itertools", "kvdb", - "lru 0.8.0", + "lru 0.8.1", "parity-db", "parity-scale-codec", "parity-util-mem", @@ -7749,7 +7749,7 @@ dependencies = [ "async-trait", "futures", "futures-timer", - "lru 0.8.0", + "lru 0.8.1", "orchestra", "parity-util-mem", "parking_lot 0.12.1", @@ -8157,7 +8157,7 @@ dependencies = [ "kusama-runtime", "kvdb", "kvdb-rocksdb", - "lru 0.8.0", + "lru 0.8.1", "pallet-babe", "pallet-im-online", "pallet-staking", From 882a892b60e25449903052b946d25bd3a00f30eb Mon Sep 17 00:00:00 2001 From: Keith Yeung Date: Wed, 12 Oct 2022 00:36:03 +0800 Subject: [PATCH 17/48] Migrate Weights properly to v2 (#1722) * Migrate Weights properly to v2 * Add missing on_runtime_upgrade implementation * Fix benchmarks * Apply suggestions from code review Co-authored-by: Oliver Tale-Yazdi * cargo fmt Co-authored-by: Oliver Tale-Yazdi --- Cargo.lock | 1 + pallets/dmp-queue/Cargo.toml | 2 + pallets/dmp-queue/src/lib.rs | 55 ++++++-------- pallets/dmp-queue/src/migration.rs | 101 +++++++++++++++++++++++++ pallets/xcmp-queue/src/benchmarking.rs | 2 +- pallets/xcmp-queue/src/lib.rs | 33 +++++--- pallets/xcmp-queue/src/migration.rs | 76 ++++++++++--------- pallets/xcmp-queue/src/tests.rs | 28 ++----- 8 files changed, 199 insertions(+), 99 deletions(-) create mode 100644 pallets/dmp-queue/src/migration.rs diff --git a/Cargo.lock b/Cargo.lock index 5af051e7b7..91795e97ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1752,6 +1752,7 @@ dependencies = [ "cumulus-primitives-core", "frame-support", "frame-system", + "log", "parity-scale-codec", "scale-info", "sp-core", diff --git a/pallets/dmp-queue/Cargo.toml b/pallets/dmp-queue/Cargo.toml index 5f423e84fc..dda503be7a 100644 --- a/pallets/dmp-queue/Cargo.toml +++ b/pallets/dmp-queue/Cargo.toml @@ -6,6 +6,7 @@ edition = "2021" [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ], default-features = false } +log = { version = "0.4.17", default-features = false } scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } # Substrate @@ -32,6 +33,7 @@ std = [ "scale-info/std", "frame-support/std", "frame-system/std", + "log/std", "sp-io/std", "sp-runtime/std", "sp-std/std", diff --git a/pallets/dmp-queue/src/lib.rs b/pallets/dmp-queue/src/lib.rs index cfcae5f3ad..75ebe2c395 100644 --- a/pallets/dmp-queue/src/lib.rs +++ b/pallets/dmp-queue/src/lib.rs @@ -21,6 +21,8 @@ #![cfg_attr(not(feature = "std"), no_std)] +pub mod migration; + use codec::{Decode, DecodeLimit, Encode}; use cumulus_primitives_core::{relay_chain::BlockNumber as RelayBlockNumber, DmpMessageHandler}; use frame_support::{ @@ -31,7 +33,10 @@ pub use pallet::*; use scale_info::TypeInfo; use sp_runtime::RuntimeDebug; use sp_std::{convert::TryFrom, prelude::*}; -use xcm::{latest::prelude::*, VersionedXcm, MAX_XCM_DECODE_DEPTH}; +use xcm::{ + latest::{prelude::*, Weight as XcmWeight}, + VersionedXcm, MAX_XCM_DECODE_DEPTH, +}; #[derive(Copy, Clone, Eq, PartialEq, Encode, Decode, RuntimeDebug, TypeInfo)] pub struct ConfigData { @@ -78,6 +83,7 @@ pub mod pallet { #[pallet::pallet] #[pallet::generate_store(pub(super) trait Store)] + #[pallet::storage_version(migration::STORAGE_VERSION)] #[pallet::without_storage_info] pub struct Pallet(_); @@ -121,6 +127,10 @@ pub mod pallet { #[pallet::hooks] impl Hooks> for Pallet { + fn on_runtime_upgrade() -> Weight { + migration::migrate_to_latest::() + } + fn on_idle(_now: T::BlockNumber, max_weight: Weight) -> Weight { // on_idle processes additional messages with any remaining block weight. Self::service_queue(max_weight) @@ -141,17 +151,18 @@ pub mod pallet { /// /// Events: /// - `OverweightServiced`: On success. - #[pallet::weight(weight_limit.saturating_add(Weight::from_ref_time(1_000_000)))] + #[pallet::weight(Weight::from_ref_time(weight_limit.saturating_add(1_000_000)))] pub fn service_overweight( origin: OriginFor, index: OverweightIndex, - weight_limit: Weight, + weight_limit: XcmWeight, ) -> DispatchResultWithPostInfo { T::ExecuteOverweightOrigin::ensure_origin(origin)?; let (sent_at, data) = Overweight::::get(index).ok_or(Error::::Unknown)?; - let weight_used = Self::try_service_message(weight_limit, sent_at, &data[..]) - .map_err(|_| Error::::OverLimit)?; + let weight_used = + Self::try_service_message(Weight::from_ref_time(weight_limit), sent_at, &data[..]) + .map_err(|_| Error::::OverLimit)?; Overweight::::remove(index); Self::deposit_event(Event::OverweightServiced { overweight_index: index, weight_used }); Ok(Some(weight_used.saturating_add(Weight::from_ref_time(1_000_000))).into()) @@ -744,49 +755,31 @@ mod tests { assert_eq!(overweights(), vec![0]); assert_noop!( - DmpQueue::service_overweight( - RuntimeOrigin::signed(1), - 0, - Weight::from_ref_time(20000) - ), + DmpQueue::service_overweight(RuntimeOrigin::signed(1), 0, 20000), BadOrigin ); assert_noop!( - DmpQueue::service_overweight( - RuntimeOrigin::root(), - 1, - Weight::from_ref_time(20000) - ), + DmpQueue::service_overweight(RuntimeOrigin::root(), 1, 20000), Error::::Unknown ); assert_noop!( - DmpQueue::service_overweight(RuntimeOrigin::root(), 0, Weight::from_ref_time(9999)), + DmpQueue::service_overweight(RuntimeOrigin::root(), 0, 9999), Error::::OverLimit ); assert_eq!(take_trace(), vec![msg_limit_reached(10000)]); - let base_weight = - super::Call::::service_overweight { index: 0, weight_limit: Weight::zero() } - .get_dispatch_info() - .weight; + let base_weight = super::Call::::service_overweight { index: 0, weight_limit: 0 } + .get_dispatch_info() + .weight; use frame_support::dispatch::GetDispatchInfo; - let info = DmpQueue::service_overweight( - RuntimeOrigin::root(), - 0, - Weight::from_ref_time(20000), - ) - .unwrap(); + let info = DmpQueue::service_overweight(RuntimeOrigin::root(), 0, 20000).unwrap(); let actual_weight = info.actual_weight.unwrap(); assert_eq!(actual_weight, base_weight + Weight::from_ref_time(10000)); assert_eq!(take_trace(), vec![msg_complete(10000)]); assert!(overweights().is_empty()); assert_noop!( - DmpQueue::service_overweight( - RuntimeOrigin::root(), - 0, - Weight::from_ref_time(20000) - ), + DmpQueue::service_overweight(RuntimeOrigin::root(), 0, 20000), Error::::Unknown ); }); diff --git a/pallets/dmp-queue/src/migration.rs b/pallets/dmp-queue/src/migration.rs new file mode 100644 index 0000000000..cfd8a1f78e --- /dev/null +++ b/pallets/dmp-queue/src/migration.rs @@ -0,0 +1,101 @@ +// Copyright 2022 Parity Technologies (UK) Ltd. +// This file is part of Polkadot. + +// Polkadot is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// Polkadot is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with Polkadot. If not, see . + +//! A module that is responsible for migration of storage. + +use crate::{Config, Pallet, Store}; +use frame_support::{ + pallet_prelude::*, + traits::StorageVersion, + weights::{constants::WEIGHT_PER_MILLIS, Weight}, +}; +use xcm::latest::Weight as XcmWeight; + +/// The current storage version. +pub const STORAGE_VERSION: StorageVersion = StorageVersion::new(1); + +/// Migrates the pallet storage to the most recent version, checking and setting the +/// `StorageVersion`. +pub fn migrate_to_latest() -> Weight { + let mut weight = T::DbWeight::get().reads(1); + + if StorageVersion::get::>() == 0 { + weight += migrate_to_v1::(); + StorageVersion::new(1).put::>(); + } + + weight +} + +mod v0 { + use super::*; + use codec::{Decode, Encode}; + + #[derive(Decode, Encode, Debug)] + pub struct ConfigData { + pub max_individual: XcmWeight, + } + + impl Default for ConfigData { + fn default() -> Self { + ConfigData { max_individual: 10u64 * WEIGHT_PER_MILLIS.ref_time() } + } + } +} + +/// Migrates `QueueConfigData` from v1 (using only reference time weights) to v2 (with +/// 2D weights). +/// +/// NOTE: Only use this function if you know what you're doing. Default to using +/// `migrate_to_latest`. +pub fn migrate_to_v1() -> Weight { + let translate = |pre: v0::ConfigData| -> super::ConfigData { + super::ConfigData { max_individual: Weight::from_ref_time(pre.max_individual) } + }; + + if let Err(_) = as Store>::Configuration::translate(|pre| pre.map(translate)) { + log::error!( + target: "dmp_queue", + "unexpected error when performing translation of the QueueConfig type during storage upgrade to v2" + ); + } + + T::DbWeight::get().reads_writes(1, 1) +} + +#[cfg(test)] +mod tests { + use super::*; + use crate::tests::{new_test_ext, Test}; + + #[test] + fn test_migration_to_v1() { + let v0 = v0::ConfigData { max_individual: 30_000_000_000 }; + + new_test_ext().execute_with(|| { + frame_support::storage::unhashed::put_raw( + &crate::Configuration::::hashed_key(), + &v0.encode(), + ); + + migrate_to_v1::(); + + let v1 = crate::Configuration::::get(); + + assert_eq!(v0.max_individual, v1.max_individual.ref_time()); + }); + } +} diff --git a/pallets/xcmp-queue/src/benchmarking.rs b/pallets/xcmp-queue/src/benchmarking.rs index 5ac78bee76..5d34d499db 100644 --- a/pallets/xcmp-queue/src/benchmarking.rs +++ b/pallets/xcmp-queue/src/benchmarking.rs @@ -22,7 +22,7 @@ use frame_system::RawOrigin; benchmarks! { set_config_with_u32 {}: update_resume_threshold(RawOrigin::Root, 100) - set_config_with_weight {}: update_weight_restrict_decay(RawOrigin::Root, Weight::from_ref_time(3_000_000)) + set_config_with_weight {}: update_weight_restrict_decay(RawOrigin::Root, 3_000_000) } impl_benchmark_test_suite!(Pallet, crate::mock::new_test_ext(), crate::mock::Test); diff --git a/pallets/xcmp-queue/src/lib.rs b/pallets/xcmp-queue/src/lib.rs index 22d1d4c1bb..6745e19221 100644 --- a/pallets/xcmp-queue/src/lib.rs +++ b/pallets/xcmp-queue/src/lib.rs @@ -54,7 +54,10 @@ use rand_chacha::{ use scale_info::TypeInfo; use sp_runtime::{traits::Hash, RuntimeDebug}; use sp_std::{convert::TryFrom, prelude::*}; -use xcm::{latest::prelude::*, VersionedXcm, WrapVersion, MAX_XCM_DECODE_DEPTH}; +use xcm::{ + latest::{prelude::*, Weight as XcmWeight}, + VersionedXcm, WrapVersion, MAX_XCM_DECODE_DEPTH, +}; use xcm_executor::traits::ConvertOrigin; pub use pallet::*; @@ -130,11 +133,11 @@ pub mod pallet { /// /// Events: /// - `OverweightServiced`: On success. - #[pallet::weight((weight_limit.saturating_add(Weight::from_ref_time(1_000_000)), DispatchClass::Operational,))] + #[pallet::weight((Weight::from_ref_time(weight_limit.saturating_add(1_000_000)), DispatchClass::Operational,))] pub fn service_overweight( origin: OriginFor, index: OverweightIndex, - weight_limit: Weight, + weight_limit: XcmWeight, ) -> DispatchResultWithPostInfo { T::ExecuteOverweightOrigin::ensure_origin(origin)?; @@ -145,8 +148,9 @@ pub mod pallet { &mut data.as_slice(), ) .map_err(|_| Error::::BadXcm)?; - let used = Self::handle_xcm_message(sender, sent_at, xcm, weight_limit) - .map_err(|_| Error::::WeightOverLimit)?; + let used = + Self::handle_xcm_message(sender, sent_at, xcm, Weight::from_ref_time(weight_limit)) + .map_err(|_| Error::::WeightOverLimit)?; Overweight::::remove(index); Self::deposit_event(Event::OverweightServiced { index, used }); Ok(Some(used.saturating_add(Weight::from_ref_time(1_000_000))).into()) @@ -222,9 +226,9 @@ pub mod pallet { /// - `origin`: Must pass `Root`. /// - `new`: Desired value for `QueueConfigData.threshold_weight` #[pallet::weight((T::WeightInfo::set_config_with_weight(), DispatchClass::Operational,))] - pub fn update_threshold_weight(origin: OriginFor, new: Weight) -> DispatchResult { + pub fn update_threshold_weight(origin: OriginFor, new: XcmWeight) -> DispatchResult { ensure_root(origin)?; - QueueConfig::::mutate(|data| data.threshold_weight = new); + QueueConfig::::mutate(|data| data.threshold_weight = Weight::from_ref_time(new)); Ok(()) } @@ -235,9 +239,14 @@ pub mod pallet { /// - `origin`: Must pass `Root`. /// - `new`: Desired value for `QueueConfigData.weight_restrict_decay`. #[pallet::weight((T::WeightInfo::set_config_with_weight(), DispatchClass::Operational,))] - pub fn update_weight_restrict_decay(origin: OriginFor, new: Weight) -> DispatchResult { + pub fn update_weight_restrict_decay( + origin: OriginFor, + new: XcmWeight, + ) -> DispatchResult { ensure_root(origin)?; - QueueConfig::::mutate(|data| data.weight_restrict_decay = new); + QueueConfig::::mutate(|data| { + data.weight_restrict_decay = Weight::from_ref_time(new) + }); Ok(()) } @@ -250,10 +259,12 @@ pub mod pallet { #[pallet::weight((T::WeightInfo::set_config_with_weight(), DispatchClass::Operational,))] pub fn update_xcmp_max_individual_weight( origin: OriginFor, - new: Weight, + new: XcmWeight, ) -> DispatchResult { ensure_root(origin)?; - QueueConfig::::mutate(|data| data.xcmp_max_individual_weight = new); + QueueConfig::::mutate(|data| { + data.xcmp_max_individual_weight = Weight::from_ref_time(new) + }); Ok(()) } diff --git a/pallets/xcmp-queue/src/migration.rs b/pallets/xcmp-queue/src/migration.rs index bedd5ffd6e..e44a053b76 100644 --- a/pallets/xcmp-queue/src/migration.rs +++ b/pallets/xcmp-queue/src/migration.rs @@ -17,25 +17,30 @@ //! A module that is responsible for migration of storage. use crate::{Config, Pallet, Store}; -use frame_support::{pallet_prelude::*, traits::StorageVersion, weights::Weight}; +use frame_support::{ + pallet_prelude::*, + traits::StorageVersion, + weights::{constants::WEIGHT_PER_MILLIS, Weight}, +}; +use xcm::latest::Weight as XcmWeight; /// The current storage version. -pub const STORAGE_VERSION: StorageVersion = StorageVersion::new(1); +pub const STORAGE_VERSION: StorageVersion = StorageVersion::new(2); /// Migrates the pallet storage to the most recent version, checking and setting the /// `StorageVersion`. pub fn migrate_to_latest() -> Weight { - let mut weight = Weight::zero(); + let mut weight = T::DbWeight::get().reads(1); - if StorageVersion::get::>() == 0 { - weight += migrate_to_v1::(); - StorageVersion::new(1).put::>(); + if StorageVersion::get::>() == 1 { + weight += migrate_to_v2::(); + StorageVersion::new(2).put::>(); } weight } -mod v0 { +mod v1 { use super::*; use codec::{Decode, Encode}; @@ -44,8 +49,9 @@ mod v0 { pub suspend_threshold: u32, pub drop_threshold: u32, pub resume_threshold: u32, - pub threshold_weight: Weight, - pub weight_restrict_decay: Weight, + pub threshold_weight: XcmWeight, + pub weight_restrict_decay: XcmWeight, + pub xcmp_max_individual_weight: XcmWeight, } impl Default for QueueConfigData { @@ -54,37 +60,35 @@ mod v0 { suspend_threshold: 2, drop_threshold: 5, resume_threshold: 1, - threshold_weight: Weight::from_ref_time(100_000), - weight_restrict_decay: Weight::from_ref_time(2), + threshold_weight: 100_000, + weight_restrict_decay: 2, + xcmp_max_individual_weight: 20u64 * WEIGHT_PER_MILLIS.ref_time(), } } } } -/// Migrates `QueueConfigData` from v0 (without the `xcmp_max_individual_weight` field) to v1 (with -/// max individual weight). -/// Uses the `Default` implementation of `QueueConfigData` to choose a value for -/// `xcmp_max_individual_weight`. +/// Migrates `QueueConfigData` from v1 (using only reference time weights) to v2 (with +/// 2D weights). /// /// NOTE: Only use this function if you know what you're doing. Default to using /// `migrate_to_latest`. -pub fn migrate_to_v1() -> Weight { - let translate = |pre: v0::QueueConfigData| -> super::QueueConfigData { +pub fn migrate_to_v2() -> Weight { + let translate = |pre: v1::QueueConfigData| -> super::QueueConfigData { super::QueueConfigData { suspend_threshold: pre.suspend_threshold, drop_threshold: pre.drop_threshold, resume_threshold: pre.resume_threshold, - threshold_weight: pre.threshold_weight, - weight_restrict_decay: pre.weight_restrict_decay, - xcmp_max_individual_weight: super::QueueConfigData::default() - .xcmp_max_individual_weight, + threshold_weight: Weight::from_ref_time(pre.threshold_weight), + weight_restrict_decay: Weight::from_ref_time(pre.weight_restrict_decay), + xcmp_max_individual_weight: Weight::from_ref_time(pre.xcmp_max_individual_weight), } }; if let Err(_) = as Store>::QueueConfig::translate(|pre| pre.map(translate)) { log::error!( target: super::LOG_TARGET, - "unexpected error when performing translation of the QueueConfig type during storage upgrade to v1" + "unexpected error when performing translation of the QueueConfig type during storage upgrade to v2" ); } @@ -97,32 +101,32 @@ mod tests { use crate::mock::{new_test_ext, Test}; #[test] - fn test_migration_to_v1() { - let v0 = v0::QueueConfigData { + fn test_migration_to_v2() { + let v1 = v1::QueueConfigData { suspend_threshold: 5, drop_threshold: 12, resume_threshold: 3, - threshold_weight: Weight::from_ref_time(333_333), - weight_restrict_decay: Weight::from_ref_time(1), + threshold_weight: 333_333, + weight_restrict_decay: 1, + xcmp_max_individual_weight: 10_000_000_000, }; new_test_ext().execute_with(|| { - // Put the v0 version in the state frame_support::storage::unhashed::put_raw( &crate::QueueConfig::::hashed_key(), - &v0.encode(), + &v1.encode(), ); - migrate_to_v1::(); + migrate_to_v2::(); - let v1 = crate::QueueConfig::::get(); + let v2 = crate::QueueConfig::::get(); - assert_eq!(v0.suspend_threshold, v1.suspend_threshold); - assert_eq!(v0.drop_threshold, v1.drop_threshold); - assert_eq!(v0.resume_threshold, v1.resume_threshold); - assert_eq!(v0.threshold_weight, v1.threshold_weight); - assert_eq!(v0.weight_restrict_decay, v1.weight_restrict_decay); - assert_eq!(v1.xcmp_max_individual_weight, Weight::from_ref_time(20_000_000_000)); + assert_eq!(v1.suspend_threshold, v2.suspend_threshold); + assert_eq!(v1.drop_threshold, v2.drop_threshold); + assert_eq!(v1.resume_threshold, v2.resume_threshold); + assert_eq!(v1.threshold_weight, v2.threshold_weight.ref_time()); + assert_eq!(v1.weight_restrict_decay, v2.weight_restrict_decay.ref_time()); + assert_eq!(v1.xcmp_max_individual_weight, v2.xcmp_max_individual_weight.ref_time()); }); } } diff --git a/pallets/xcmp-queue/src/tests.rs b/pallets/xcmp-queue/src/tests.rs index 1b6303ddaf..1586e313b5 100644 --- a/pallets/xcmp-queue/src/tests.rs +++ b/pallets/xcmp-queue/src/tests.rs @@ -96,7 +96,7 @@ fn handle_invalid_data() { fn service_overweight_unknown() { new_test_ext().execute_with(|| { assert_noop!( - XcmpQueue::service_overweight(RuntimeOrigin::root(), 0, Weight::from_ref_time(1000)), + XcmpQueue::service_overweight(RuntimeOrigin::root(), 0, 1000), Error::::BadOverweightIndex, ); }); @@ -109,7 +109,7 @@ fn service_overweight_bad_xcm_format() { Overweight::::insert(0, (ParaId::from(1000), 0, bad_xcm)); assert_noop!( - XcmpQueue::service_overweight(RuntimeOrigin::root(), 0, Weight::from_ref_time(1000)), + XcmpQueue::service_overweight(RuntimeOrigin::root(), 0, 1000), Error::::BadXcm ); }); @@ -187,15 +187,9 @@ fn update_threshold_weight_works() { new_test_ext().execute_with(|| { let data: QueueConfigData = >::get(); assert_eq!(data.threshold_weight, Weight::from_ref_time(100_000)); - assert_ok!(XcmpQueue::update_threshold_weight( - RuntimeOrigin::root(), - Weight::from_ref_time(10_000) - )); + assert_ok!(XcmpQueue::update_threshold_weight(RuntimeOrigin::root(), 10_000)); assert_noop!( - XcmpQueue::update_threshold_weight( - RuntimeOrigin::signed(5), - Weight::from_ref_time(10_000_000) - ), + XcmpQueue::update_threshold_weight(RuntimeOrigin::signed(5), 10_000_000), BadOrigin ); let data: QueueConfigData = >::get(); @@ -209,15 +203,9 @@ fn update_weight_restrict_decay_works() { new_test_ext().execute_with(|| { let data: QueueConfigData = >::get(); assert_eq!(data.weight_restrict_decay, Weight::from_ref_time(2)); - assert_ok!(XcmpQueue::update_weight_restrict_decay( - RuntimeOrigin::root(), - Weight::from_ref_time(5) - )); + assert_ok!(XcmpQueue::update_weight_restrict_decay(RuntimeOrigin::root(), 5)); assert_noop!( - XcmpQueue::update_weight_restrict_decay( - RuntimeOrigin::signed(6), - Weight::from_ref_time(4) - ), + XcmpQueue::update_weight_restrict_decay(RuntimeOrigin::signed(6), 4), BadOrigin ); let data: QueueConfigData = >::get(); @@ -233,12 +221,12 @@ fn update_xcmp_max_individual_weight() { assert_eq!(data.xcmp_max_individual_weight, 20u64 * WEIGHT_PER_MILLIS); assert_ok!(XcmpQueue::update_xcmp_max_individual_weight( RuntimeOrigin::root(), - 30u64 * WEIGHT_PER_MILLIS + 30u64 * WEIGHT_PER_MILLIS.ref_time() )); assert_noop!( XcmpQueue::update_xcmp_max_individual_weight( RuntimeOrigin::signed(3), - 10u64 * WEIGHT_PER_MILLIS + 10u64 * WEIGHT_PER_MILLIS.ref_time() ), BadOrigin ); From e695dd905d62fec2e2cb9ba333f56310920cf685 Mon Sep 17 00:00:00 2001 From: Aaro Altonen <48052676+altonen@users.noreply.github.com> Date: Thu, 13 Oct 2022 13:02:39 +0300 Subject: [PATCH 18/48] Companion for paritytech/substrate#12480 (#1758) * Companion for paritytech/substrate#12480 * update lockfile for {"substrate", "polkadot"} Co-authored-by: parity-processbot <> --- Cargo.lock | 582 ++++++++++-------- .../relay-chain-minimal-node/src/network.rs | 2 +- 2 files changed, 332 insertions(+), 252 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 91795e97ba..0462b5b6e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "beefy-primitives", "sp-api", @@ -536,7 +536,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "parity-scale-codec", "scale-info", @@ -2409,6 +2409,12 @@ version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" +[[package]] +name = "downcast" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1" + [[package]] name = "downcast-rs" version = "1.2.0" @@ -2791,6 +2797,15 @@ dependencies = [ "miniz_oxide", ] +[[package]] +name = "float-cmp" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" +dependencies = [ + "num-traits", +] + [[package]] name = "fnv" version = "1.0.7" @@ -2800,7 +2815,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "parity-scale-codec", ] @@ -2814,10 +2829,16 @@ dependencies = [ "percent-encoding", ] +[[package]] +name = "fragile" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85dcb89d2b10c5f6133de2efd8c11959ce9dbb46a2f7a4cab208c4eeda6ce1ab" + [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-support", "frame-system", @@ -2840,7 +2861,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "Inflector", "array-bytes", @@ -2891,7 +2912,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2902,7 +2923,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2918,7 +2939,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-support", "frame-system", @@ -2947,7 +2968,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "bitflags", "frame-metadata", @@ -2979,7 +3000,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "Inflector", "cfg-expr", @@ -2993,7 +3014,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3005,7 +3026,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "proc-macro2", "quote", @@ -3015,7 +3036,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-support", "log", @@ -3033,7 +3054,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -3048,7 +3069,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "parity-scale-codec", "sp-api", @@ -3057,7 +3078,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-support", "parity-scale-codec", @@ -3924,7 +3945,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "beefy-primitives", "bitvec", @@ -4022,7 +4043,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "frame-support", "polkadot-primitives", @@ -4961,6 +4982,33 @@ dependencies = [ "windows-sys 0.36.1", ] +[[package]] +name = "mockall" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2be9a9090bc1cac2930688fa9478092a64c6a92ddc6ae0692d46b37d9cab709" +dependencies = [ + "cfg-if 1.0.0", + "downcast", + "fragile", + "lazy_static", + "mockall_derive", + "predicates", + "predicates-tree", +] + +[[package]] +name = "mockall_derive" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86d702a0530a0141cf4ed147cf5ec7be6f2c187d4e37fcbefc39cf34116bfe8f" +dependencies = [ + "cfg-if 1.0.0", + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "multiaddr" version = "0.14.0" @@ -5200,6 +5248,12 @@ dependencies = [ "version_check", ] +[[package]] +name = "normalize-line-endings" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" + [[package]] name = "num-bigint" version = "0.2.6" @@ -5405,7 +5459,7 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5426,7 +5480,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-support", "frame-system", @@ -5443,7 +5497,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -5457,7 +5511,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-support", "frame-system", @@ -5473,7 +5527,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-support", "frame-system", @@ -5489,7 +5543,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-support", "frame-system", @@ -5504,7 +5558,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -5528,7 +5582,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5548,7 +5602,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -5563,7 +5617,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "beefy-primitives", "frame-support", @@ -5579,7 +5633,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5602,7 +5656,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -5620,7 +5674,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -5664,7 +5718,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -5681,7 +5735,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "bitflags", "frame-benchmarking", @@ -5710,7 +5764,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "bitflags", "parity-scale-codec", @@ -5722,7 +5776,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "proc-macro2", "quote", @@ -5732,7 +5786,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5749,7 +5803,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -5767,7 +5821,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5791,7 +5845,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5804,7 +5858,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -5822,7 +5876,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5843,7 +5897,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -5858,7 +5912,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -5881,7 +5935,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5897,7 +5951,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -5917,7 +5971,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -5934,7 +5988,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -5951,7 +6005,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5969,7 +6023,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5984,7 +6038,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -6000,7 +6054,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-support", "frame-system", @@ -6017,7 +6071,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6037,7 +6091,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "parity-scale-codec", "sp-api", @@ -6047,7 +6101,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-support", "frame-system", @@ -6064,7 +6118,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6087,7 +6141,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -6104,7 +6158,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -6119,7 +6173,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-support", "frame-system", @@ -6133,7 +6187,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -6151,7 +6205,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -6166,7 +6220,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6184,7 +6238,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -6200,7 +6254,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-support", "frame-system", @@ -6221,7 +6275,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -6237,7 +6291,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-support", "frame-system", @@ -6251,7 +6305,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6274,7 +6328,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6285,7 +6339,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "log", "sp-arithmetic", @@ -6294,7 +6348,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-support", "frame-system", @@ -6323,7 +6377,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -6341,7 +6395,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -6360,7 +6414,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-support", "frame-system", @@ -6376,7 +6430,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6391,7 +6445,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6402,7 +6456,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -6419,7 +6473,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -6434,7 +6488,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -6450,7 +6504,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -6465,7 +6519,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-benchmarking", "frame-support", @@ -6480,7 +6534,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "frame-support", "frame-system", @@ -6498,7 +6552,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7052,7 +7106,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7067,7 +7121,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7081,7 +7135,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "derive_more", "fatality", @@ -7104,7 +7158,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "fatality", "futures", @@ -7125,7 +7179,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "clap", "frame-benchmarking-cli", @@ -7151,7 +7205,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7192,7 +7246,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "always-assert", "bitvec", @@ -7214,7 +7268,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7227,7 +7281,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "derive_more", "fatality", @@ -7252,7 +7306,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7266,7 +7320,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "futures", "futures-timer", @@ -7286,7 +7340,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "always-assert", "async-trait", @@ -7310,7 +7364,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "futures", "parity-scale-codec", @@ -7328,7 +7382,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "bitvec", "derive_more", @@ -7357,7 +7411,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "bitvec", "futures", @@ -7377,7 +7431,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "bitvec", "fatality", @@ -7396,7 +7450,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7411,7 +7465,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "async-trait", "futures", @@ -7429,7 +7483,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7444,7 +7498,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "futures", "futures-timer", @@ -7461,7 +7515,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "fatality", "futures", @@ -7480,7 +7534,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "async-trait", "futures", @@ -7497,7 +7551,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "bitvec", "fatality", @@ -7515,7 +7569,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "always-assert", "assert_matches", @@ -7547,7 +7601,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "futures", "polkadot-node-primitives", @@ -7563,7 +7617,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "futures", "memory-lru", @@ -7579,7 +7633,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "async-std", "lazy_static", @@ -7597,7 +7651,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "bs58", "futures", @@ -7616,7 +7670,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "async-trait", "derive_more", @@ -7639,7 +7693,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "bounded-vec", "futures", @@ -7661,7 +7715,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7671,7 +7725,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "async-trait", "futures", @@ -7689,7 +7743,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "async-trait", "derive_more", @@ -7712,7 +7766,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "async-trait", "derive_more", @@ -7745,7 +7799,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "async-trait", "futures", @@ -7768,7 +7822,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "derive_more", "frame-support", @@ -7866,7 +7920,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7881,7 +7935,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "bitvec", "frame-system", @@ -7911,7 +7965,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7943,7 +7997,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "beefy-primitives", "bitvec", @@ -8032,7 +8086,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "beefy-primitives", "bitvec", @@ -8079,7 +8133,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "frame-support", "polkadot-primitives", @@ -8091,7 +8145,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "bs58", "parity-scale-codec", @@ -8103,7 +8157,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "bitflags", "bitvec", @@ -8146,7 +8200,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "async-trait", "beefy-gadget", @@ -8251,7 +8305,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8272,7 +8326,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8282,7 +8336,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8307,7 +8361,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "beefy-primitives", "bitvec", @@ -8368,7 +8422,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "frame-benchmarking", "frame-system", @@ -8477,8 +8531,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a5aab5be6e4732b473071984b3164dbbfb7a3674d30ea5ff44410b6bcd960c3c" dependencies = [ "difflib", + "float-cmp", "itertools", + "normalize-line-endings", "predicates-core", + "regex", ] [[package]] @@ -8999,7 +9056,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9118,7 +9175,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9202,7 +9259,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "frame-support", "polkadot-primitives", @@ -9372,7 +9429,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "log", "sp-core", @@ -9383,7 +9440,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "async-trait", "futures", @@ -9410,7 +9467,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "futures", "futures-timer", @@ -9433,7 +9490,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9449,7 +9506,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9466,7 +9523,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9477,7 +9534,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "array-bytes", "chrono", @@ -9517,7 +9574,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "fnv", "futures", @@ -9545,7 +9602,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "hash-db", "kvdb", @@ -9570,7 +9627,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "async-trait", "futures", @@ -9594,7 +9651,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "async-trait", "futures", @@ -9623,7 +9680,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "async-trait", "fork-tree", @@ -9665,7 +9722,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "futures", "jsonrpsee", @@ -9687,7 +9744,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9700,7 +9757,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "async-trait", "futures", @@ -9724,7 +9781,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9751,7 +9808,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "environmental", "parity-scale-codec", @@ -9767,7 +9824,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "log", "parity-scale-codec", @@ -9782,7 +9839,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9802,7 +9859,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "ahash", "array-bytes", @@ -9843,7 +9900,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "finality-grandpa", "futures", @@ -9864,7 +9921,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "ansi_term", "futures", @@ -9881,7 +9938,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "array-bytes", "async-trait", @@ -9896,7 +9953,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "array-bytes", "async-trait", @@ -9943,7 +10000,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "cid", "futures", @@ -9963,7 +10020,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "async-trait", "bitflags", @@ -9989,7 +10046,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "ahash", "futures", @@ -10007,7 +10064,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "array-bytes", "futures", @@ -10028,7 +10085,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "array-bytes", "fork-tree", @@ -10036,6 +10093,7 @@ dependencies = [ "libp2p", "log", "lru 0.7.7", + "mockall", "parity-scale-codec", "prost 0.11.0", "prost-build 0.11.1", @@ -10056,7 +10114,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "array-bytes", "futures", @@ -10075,7 +10133,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "array-bytes", "bytes", @@ -10105,7 +10163,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "futures", "libp2p", @@ -10118,7 +10176,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10127,7 +10185,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "futures", "hash-db", @@ -10157,7 +10215,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "futures", "jsonrpsee", @@ -10180,7 +10238,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "futures", "jsonrpsee", @@ -10190,10 +10248,29 @@ dependencies = [ "tokio", ] +[[package]] +name = "sc-rpc-spec-v2" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +dependencies = [ + "futures", + "hex", + "jsonrpsee", + "parity-scale-codec", + "sc-chain-spec", + "sc-transaction-pool-api", + "serde", + "sp-api", + "sp-blockchain", + "sp-core", + "sp-runtime", + "thiserror", +] + [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "async-trait", "directories", @@ -10225,6 +10302,7 @@ dependencies = [ "sc-offchain", "sc-rpc", "sc-rpc-server", + "sc-rpc-spec-v2", "sc-sysinfo", "sc-telemetry", "sc-tracing", @@ -10263,7 +10341,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "log", "parity-scale-codec", @@ -10277,7 +10355,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10296,7 +10374,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "futures", "libc", @@ -10315,7 +10393,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "chrono", "futures", @@ -10333,7 +10411,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "ansi_term", "atty", @@ -10364,7 +10442,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10375,8 +10453,9 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ + "async-trait", "futures", "futures-timer", "linked-hash-map", @@ -10401,8 +10480,9 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ + "async-trait", "futures", "log", "serde", @@ -10414,7 +10494,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "futures", "futures-timer", @@ -10844,7 +10924,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "enumn", "parity-scale-codec", @@ -10920,7 +11000,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "hash-db", "log", @@ -10938,7 +11018,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "blake2", "proc-macro-crate", @@ -10950,7 +11030,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "parity-scale-codec", "scale-info", @@ -10963,7 +11043,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "integer-sqrt", "num-traits", @@ -10978,7 +11058,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "parity-scale-codec", "scale-info", @@ -10991,7 +11071,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "async-trait", "parity-scale-codec", @@ -11003,7 +11083,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "parity-scale-codec", "sp-api", @@ -11015,7 +11095,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "futures", "log", @@ -11033,7 +11113,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "async-trait", "futures", @@ -11052,7 +11132,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "async-trait", "parity-scale-codec", @@ -11070,7 +11150,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "async-trait", "merlin", @@ -11093,7 +11173,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "parity-scale-codec", "scale-info", @@ -11107,7 +11187,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "parity-scale-codec", "scale-info", @@ -11120,7 +11200,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "array-bytes", "base58", @@ -11166,7 +11246,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "blake2", "byteorder", @@ -11180,7 +11260,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "proc-macro2", "quote", @@ -11191,7 +11271,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11200,7 +11280,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "proc-macro2", "quote", @@ -11210,7 +11290,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "environmental", "parity-scale-codec", @@ -11221,7 +11301,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "finality-grandpa", "log", @@ -11239,7 +11319,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11253,7 +11333,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "bytes", "futures", @@ -11279,7 +11359,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "lazy_static", "sp-core", @@ -11290,7 +11370,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "async-trait", "futures", @@ -11307,7 +11387,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "thiserror", "zstd", @@ -11316,7 +11396,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "log", "parity-scale-codec", @@ -11332,7 +11412,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "parity-scale-codec", "scale-info", @@ -11346,7 +11426,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "sp-api", "sp-core", @@ -11356,7 +11436,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "backtrace", "lazy_static", @@ -11366,7 +11446,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "rustc-hash", "serde", @@ -11376,7 +11456,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "either", "hash256-std-hasher", @@ -11399,7 +11479,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11417,7 +11497,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "Inflector", "proc-macro-crate", @@ -11429,7 +11509,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "log", "parity-scale-codec", @@ -11443,7 +11523,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "serde", "serde_json", @@ -11452,7 +11532,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "parity-scale-codec", "scale-info", @@ -11466,7 +11546,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "parity-scale-codec", "scale-info", @@ -11477,7 +11557,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "hash-db", "log", @@ -11499,12 +11579,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11517,7 +11597,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "log", "sp-core", @@ -11530,7 +11610,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "async-trait", "futures-timer", @@ -11546,7 +11626,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "parity-scale-codec", "sp-std", @@ -11558,7 +11638,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "sp-api", "sp-runtime", @@ -11567,7 +11647,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "async-trait", "log", @@ -11583,7 +11663,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "ahash", "hash-db", @@ -11606,7 +11686,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11623,7 +11703,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11634,7 +11714,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "impl-trait-for-tuples", "log", @@ -11647,7 +11727,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11943,7 +12023,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "platforms", ] @@ -11951,7 +12031,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11972,7 +12052,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "futures-util", "hyper", @@ -11985,7 +12065,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "jsonrpsee", "log", @@ -12006,7 +12086,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "array-bytes", "async-trait", @@ -12032,7 +12112,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "futures", "substrate-test-utils-derive", @@ -12042,7 +12122,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12053,7 +12133,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "ansi_term", "build-helper", @@ -12161,7 +12241,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "frame-support", "polkadot-primitives", @@ -12441,7 +12521,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12452,7 +12532,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12579,7 +12659,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0c1ccdaa53556a106aa69c23f19527e435970237" +source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" dependencies = [ "clap", "frame-try-runtime", @@ -13167,7 +13247,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "beefy-primitives", "bitvec", @@ -13257,7 +13337,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "frame-support", "polkadot-primitives", @@ -13540,7 +13620,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13554,7 +13634,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "frame-support", "frame-system", @@ -13574,7 +13654,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "frame-benchmarking", "frame-support", @@ -13592,7 +13672,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#f479d1ead57ec3e2963163c4c6ed51fb507f6759" +source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" dependencies = [ "Inflector", "proc-macro2", diff --git a/client/relay-chain-minimal-node/src/network.rs b/client/relay-chain-minimal-node/src/network.rs index fa18418f62..b765b9123c 100644 --- a/client/relay-chain-minimal-node/src/network.rs +++ b/client/relay-chain-minimal-node/src/network.rs @@ -255,7 +255,7 @@ impl sc_network_common::sync::ChainSync for DummyChainSync { fn block_requests( &mut self, - ) -> Box)> + '_> + ) -> Box)> + '_> { Box::new(std::iter::empty()) } From 25811e427d51190178e7c1535ff64aa8a734445b Mon Sep 17 00:00:00 2001 From: Michal Kucharczyk <1728078+michalkucharczyk@users.noreply.github.com> Date: Fri, 14 Oct 2022 13:01:29 +0200 Subject: [PATCH 19/48] BlockId removal refactor: Backend::state_at (#1760) * BlockId removal refactor: Backend::state_at * corrected * update lockfile for {"substrate", "polkadot"} Co-authored-by: parity-processbot <> --- Cargo.lock | 504 +++++++++--------- .../src/lib.rs | 6 +- 2 files changed, 254 insertions(+), 256 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0462b5b6e6..845bf9b93b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "beefy-primitives", "sp-api", @@ -536,7 +536,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "parity-scale-codec", "scale-info", @@ -2815,7 +2815,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "parity-scale-codec", ] @@ -2838,7 +2838,7 @@ checksum = "85dcb89d2b10c5f6133de2efd8c11959ce9dbb46a2f7a4cab208c4eeda6ce1ab" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-support", "frame-system", @@ -2861,7 +2861,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "Inflector", "array-bytes", @@ -2912,7 +2912,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2923,7 +2923,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2939,7 +2939,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-support", "frame-system", @@ -2968,7 +2968,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "bitflags", "frame-metadata", @@ -3000,7 +3000,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "Inflector", "cfg-expr", @@ -3014,7 +3014,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3026,7 +3026,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "proc-macro2", "quote", @@ -3036,7 +3036,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-support", "log", @@ -3054,7 +3054,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -3069,7 +3069,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "parity-scale-codec", "sp-api", @@ -3078,7 +3078,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-support", "parity-scale-codec", @@ -3945,7 +3945,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "beefy-primitives", "bitvec", @@ -4043,7 +4043,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "frame-support", "polkadot-primitives", @@ -5459,7 +5459,7 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5480,7 +5480,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-support", "frame-system", @@ -5497,7 +5497,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5511,7 +5511,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-support", "frame-system", @@ -5527,7 +5527,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-support", "frame-system", @@ -5543,7 +5543,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-support", "frame-system", @@ -5558,7 +5558,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5582,7 +5582,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5602,7 +5602,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5617,7 +5617,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "beefy-primitives", "frame-support", @@ -5633,7 +5633,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5656,7 +5656,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5674,7 +5674,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5718,7 +5718,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5735,7 +5735,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "bitflags", "frame-benchmarking", @@ -5764,7 +5764,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "bitflags", "parity-scale-codec", @@ -5776,7 +5776,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "proc-macro2", "quote", @@ -5786,7 +5786,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5803,7 +5803,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5821,7 +5821,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5845,7 +5845,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5858,7 +5858,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5876,7 +5876,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5897,7 +5897,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5912,7 +5912,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5935,7 +5935,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5951,7 +5951,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5971,7 +5971,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -5988,7 +5988,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -6005,7 +6005,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -6023,7 +6023,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -6038,7 +6038,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -6054,7 +6054,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-support", "frame-system", @@ -6071,7 +6071,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6091,7 +6091,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "parity-scale-codec", "sp-api", @@ -6101,7 +6101,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-support", "frame-system", @@ -6118,7 +6118,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6141,7 +6141,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -6158,7 +6158,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -6173,7 +6173,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-support", "frame-system", @@ -6187,7 +6187,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -6205,7 +6205,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -6220,7 +6220,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6238,7 +6238,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -6254,7 +6254,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-support", "frame-system", @@ -6275,7 +6275,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -6291,7 +6291,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-support", "frame-system", @@ -6305,7 +6305,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6328,7 +6328,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6339,7 +6339,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "log", "sp-arithmetic", @@ -6348,7 +6348,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-support", "frame-system", @@ -6377,7 +6377,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -6395,7 +6395,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -6414,7 +6414,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-support", "frame-system", @@ -6430,7 +6430,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6445,7 +6445,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6456,7 +6456,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -6473,7 +6473,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -6488,7 +6488,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -6504,7 +6504,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -6519,7 +6519,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-benchmarking", "frame-support", @@ -6534,7 +6534,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "frame-support", "frame-system", @@ -6552,7 +6552,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "frame-benchmarking", "frame-support", @@ -7106,7 +7106,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7121,7 +7121,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7135,7 +7135,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "derive_more", "fatality", @@ -7158,7 +7158,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "fatality", "futures", @@ -7179,7 +7179,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "clap", "frame-benchmarking-cli", @@ -7205,7 +7205,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7246,7 +7246,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "always-assert", "bitvec", @@ -7268,7 +7268,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7281,7 +7281,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "derive_more", "fatality", @@ -7306,7 +7306,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7320,7 +7320,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "futures", "futures-timer", @@ -7340,7 +7340,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "always-assert", "async-trait", @@ -7364,7 +7364,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "futures", "parity-scale-codec", @@ -7382,7 +7382,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "bitvec", "derive_more", @@ -7411,7 +7411,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "bitvec", "futures", @@ -7431,7 +7431,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "bitvec", "fatality", @@ -7450,7 +7450,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7465,7 +7465,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "async-trait", "futures", @@ -7483,7 +7483,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7498,7 +7498,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "futures", "futures-timer", @@ -7515,7 +7515,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "fatality", "futures", @@ -7534,7 +7534,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "async-trait", "futures", @@ -7551,7 +7551,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "bitvec", "fatality", @@ -7569,7 +7569,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "always-assert", "assert_matches", @@ -7601,7 +7601,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "futures", "polkadot-node-primitives", @@ -7617,7 +7617,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "futures", "memory-lru", @@ -7633,7 +7633,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "async-std", "lazy_static", @@ -7651,7 +7651,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "bs58", "futures", @@ -7670,7 +7670,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "async-trait", "derive_more", @@ -7693,7 +7693,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "bounded-vec", "futures", @@ -7715,7 +7715,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7725,7 +7725,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "async-trait", "futures", @@ -7743,7 +7743,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "async-trait", "derive_more", @@ -7766,7 +7766,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "async-trait", "derive_more", @@ -7799,7 +7799,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "async-trait", "futures", @@ -7822,7 +7822,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "derive_more", "frame-support", @@ -7920,7 +7920,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7935,7 +7935,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "bitvec", "frame-system", @@ -7965,7 +7965,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7997,7 +7997,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "beefy-primitives", "bitvec", @@ -8086,7 +8086,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "beefy-primitives", "bitvec", @@ -8133,7 +8133,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "frame-support", "polkadot-primitives", @@ -8145,7 +8145,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "bs58", "parity-scale-codec", @@ -8157,7 +8157,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "bitflags", "bitvec", @@ -8200,7 +8200,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "async-trait", "beefy-gadget", @@ -8305,7 +8305,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8326,7 +8326,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8336,7 +8336,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8361,7 +8361,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "beefy-primitives", "bitvec", @@ -8422,7 +8422,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "frame-benchmarking", "frame-system", @@ -9056,7 +9056,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9175,7 +9175,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9259,7 +9259,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "frame-support", "polkadot-primitives", @@ -9429,7 +9429,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "log", "sp-core", @@ -9440,7 +9440,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "async-trait", "futures", @@ -9467,7 +9467,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "futures", "futures-timer", @@ -9490,7 +9490,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9506,7 +9506,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9523,7 +9523,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9534,7 +9534,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "array-bytes", "chrono", @@ -9574,7 +9574,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "fnv", "futures", @@ -9602,7 +9602,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "hash-db", "kvdb", @@ -9627,7 +9627,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "async-trait", "futures", @@ -9651,7 +9651,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "async-trait", "futures", @@ -9680,7 +9680,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "async-trait", "fork-tree", @@ -9722,7 +9722,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "futures", "jsonrpsee", @@ -9744,7 +9744,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9757,7 +9757,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "async-trait", "futures", @@ -9781,7 +9781,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9808,7 +9808,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "environmental", "parity-scale-codec", @@ -9824,7 +9824,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "log", "parity-scale-codec", @@ -9839,7 +9839,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9859,7 +9859,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "ahash", "array-bytes", @@ -9900,7 +9900,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "finality-grandpa", "futures", @@ -9921,7 +9921,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "ansi_term", "futures", @@ -9938,7 +9938,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "array-bytes", "async-trait", @@ -9953,7 +9953,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "array-bytes", "async-trait", @@ -10000,7 +10000,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "cid", "futures", @@ -10020,7 +10020,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "async-trait", "bitflags", @@ -10046,7 +10046,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "ahash", "futures", @@ -10064,7 +10064,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "array-bytes", "futures", @@ -10085,7 +10085,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "array-bytes", "fork-tree", @@ -10114,7 +10114,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "array-bytes", "futures", @@ -10133,7 +10133,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "array-bytes", "bytes", @@ -10163,7 +10163,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "futures", "libp2p", @@ -10176,7 +10176,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10185,7 +10185,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "futures", "hash-db", @@ -10215,7 +10215,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "futures", "jsonrpsee", @@ -10238,7 +10238,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "futures", "jsonrpsee", @@ -10251,7 +10251,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "futures", "hex", @@ -10270,7 +10270,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "async-trait", "directories", @@ -10341,7 +10341,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "log", "parity-scale-codec", @@ -10355,7 +10355,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10374,7 +10374,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "futures", "libc", @@ -10393,7 +10393,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "chrono", "futures", @@ -10411,7 +10411,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "ansi_term", "atty", @@ -10442,7 +10442,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10453,7 +10453,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "async-trait", "futures", @@ -10480,7 +10480,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "async-trait", "futures", @@ -10494,7 +10494,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "futures", "futures-timer", @@ -10924,7 +10924,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "enumn", "parity-scale-codec", @@ -11000,7 +11000,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "hash-db", "log", @@ -11018,7 +11018,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "blake2", "proc-macro-crate", @@ -11030,7 +11030,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "parity-scale-codec", "scale-info", @@ -11043,7 +11043,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "integer-sqrt", "num-traits", @@ -11058,7 +11058,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "parity-scale-codec", "scale-info", @@ -11071,7 +11071,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "async-trait", "parity-scale-codec", @@ -11083,7 +11083,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "parity-scale-codec", "sp-api", @@ -11095,7 +11095,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "futures", "log", @@ -11113,7 +11113,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "async-trait", "futures", @@ -11132,7 +11132,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "async-trait", "parity-scale-codec", @@ -11150,7 +11150,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "async-trait", "merlin", @@ -11173,7 +11173,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "parity-scale-codec", "scale-info", @@ -11187,7 +11187,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "parity-scale-codec", "scale-info", @@ -11200,7 +11200,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "array-bytes", "base58", @@ -11246,7 +11246,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "blake2", "byteorder", @@ -11260,7 +11260,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "proc-macro2", "quote", @@ -11271,7 +11271,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11280,7 +11280,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "proc-macro2", "quote", @@ -11290,7 +11290,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "environmental", "parity-scale-codec", @@ -11301,7 +11301,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "finality-grandpa", "log", @@ -11319,7 +11319,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11333,7 +11333,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "bytes", "futures", @@ -11359,7 +11359,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "lazy_static", "sp-core", @@ -11370,7 +11370,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "async-trait", "futures", @@ -11387,7 +11387,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "thiserror", "zstd", @@ -11396,7 +11396,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "log", "parity-scale-codec", @@ -11412,7 +11412,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "parity-scale-codec", "scale-info", @@ -11426,7 +11426,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "sp-api", "sp-core", @@ -11436,7 +11436,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "backtrace", "lazy_static", @@ -11446,7 +11446,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "rustc-hash", "serde", @@ -11456,7 +11456,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "either", "hash256-std-hasher", @@ -11479,7 +11479,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11497,7 +11497,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "Inflector", "proc-macro-crate", @@ -11509,7 +11509,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "log", "parity-scale-codec", @@ -11523,7 +11523,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "serde", "serde_json", @@ -11532,7 +11532,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "parity-scale-codec", "scale-info", @@ -11546,7 +11546,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "parity-scale-codec", "scale-info", @@ -11557,7 +11557,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "hash-db", "log", @@ -11579,12 +11579,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11597,7 +11597,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "log", "sp-core", @@ -11610,7 +11610,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "async-trait", "futures-timer", @@ -11626,7 +11626,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "parity-scale-codec", "sp-std", @@ -11638,7 +11638,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "sp-api", "sp-runtime", @@ -11647,7 +11647,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "async-trait", "log", @@ -11663,7 +11663,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "ahash", "hash-db", @@ -11686,7 +11686,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11703,7 +11703,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11714,7 +11714,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "impl-trait-for-tuples", "log", @@ -11727,7 +11727,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -12023,7 +12023,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "platforms", ] @@ -12031,7 +12031,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -12052,7 +12052,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "futures-util", "hyper", @@ -12065,7 +12065,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "jsonrpsee", "log", @@ -12086,7 +12086,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "array-bytes", "async-trait", @@ -12112,7 +12112,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "futures", "substrate-test-utils-derive", @@ -12122,7 +12122,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12133,7 +12133,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "ansi_term", "build-helper", @@ -12241,7 +12241,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "frame-support", "polkadot-primitives", @@ -12521,7 +12521,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12532,7 +12532,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12659,7 +12659,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#983b6b0e5d93a3f7d99d8b3d3a8bb398af3ec045" +source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" dependencies = [ "clap", "frame-try-runtime", @@ -13247,7 +13247,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "beefy-primitives", "bitvec", @@ -13337,7 +13337,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "frame-support", "polkadot-primitives", @@ -13620,7 +13620,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13634,7 +13634,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "frame-support", "frame-system", @@ -13654,7 +13654,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "frame-benchmarking", "frame-support", @@ -13672,7 +13672,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#0398050920f818d4b7c2b47cf751b37bb498560f" +source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" dependencies = [ "Inflector", "proc-macro2", diff --git a/client/relay-chain-inprocess-interface/src/lib.rs b/client/relay-chain-inprocess-interface/src/lib.rs index 70df07ad47..22e888757c 100644 --- a/client/relay-chain-inprocess-interface/src/lib.rs +++ b/client/relay-chain-inprocess-interface/src/lib.rs @@ -180,8 +180,7 @@ where relay_parent: PHash, key: &[u8], ) -> RelayChainResult> { - let block_id = BlockId::Hash(relay_parent); - let state = self.backend.state_at(block_id)?; + let state = self.backend.state_at(&relay_parent)?; state.storage(key).map_err(RelayChainError::GenericError) } @@ -190,8 +189,7 @@ where relay_parent: PHash, relevant_keys: &Vec>, ) -> RelayChainResult { - let block_id = BlockId::Hash(relay_parent); - let state_backend = self.backend.state_at(block_id)?; + let state_backend = self.backend.state_at(&relay_parent)?; sp_state_machine::prove_read(state_backend, relevant_keys) .map_err(RelayChainError::StateMachineError) From 8bb691c68828e57683a0e6ca52a0bd9d66653eb5 Mon Sep 17 00:00:00 2001 From: Aaro Altonen <48052676+altonen@users.noreply.github.com> Date: Mon, 17 Oct 2022 10:49:55 +0300 Subject: [PATCH 20/48] Companion for paritytech/substrate#12489 (#1766) * Companion for paritytech/substrate#12489 * fmt * update lockfile for {"polkadot", "substrate"} Co-authored-by: parity-processbot <> --- Cargo.lock | 506 +++++++++--------- .../relay-chain-minimal-node/src/network.rs | 16 + 2 files changed, 270 insertions(+), 252 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 845bf9b93b..d4a98807fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "beefy-primitives", "sp-api", @@ -536,7 +536,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "parity-scale-codec", "scale-info", @@ -2815,7 +2815,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "parity-scale-codec", ] @@ -2838,7 +2838,7 @@ checksum = "85dcb89d2b10c5f6133de2efd8c11959ce9dbb46a2f7a4cab208c4eeda6ce1ab" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-support", "frame-system", @@ -2861,7 +2861,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "Inflector", "array-bytes", @@ -2912,7 +2912,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2923,7 +2923,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2939,7 +2939,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-support", "frame-system", @@ -2968,7 +2968,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "bitflags", "frame-metadata", @@ -3000,7 +3000,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "Inflector", "cfg-expr", @@ -3014,7 +3014,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3026,7 +3026,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "proc-macro2", "quote", @@ -3036,7 +3036,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-support", "log", @@ -3054,7 +3054,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -3069,7 +3069,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "parity-scale-codec", "sp-api", @@ -3078,7 +3078,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-support", "parity-scale-codec", @@ -3945,7 +3945,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "beefy-primitives", "bitvec", @@ -4043,7 +4043,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "frame-support", "polkadot-primitives", @@ -5459,7 +5459,7 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5480,7 +5480,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-support", "frame-system", @@ -5497,7 +5497,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5511,7 +5511,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-support", "frame-system", @@ -5527,7 +5527,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-support", "frame-system", @@ -5543,7 +5543,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-support", "frame-system", @@ -5558,7 +5558,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5582,7 +5582,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5602,7 +5602,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5617,7 +5617,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "beefy-primitives", "frame-support", @@ -5633,7 +5633,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5656,7 +5656,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5674,7 +5674,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5718,7 +5718,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5735,7 +5735,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "bitflags", "frame-benchmarking", @@ -5764,7 +5764,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "bitflags", "parity-scale-codec", @@ -5776,7 +5776,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "proc-macro2", "quote", @@ -5786,7 +5786,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5803,7 +5803,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5821,7 +5821,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5845,7 +5845,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5858,7 +5858,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5876,7 +5876,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5897,7 +5897,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5912,7 +5912,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5935,7 +5935,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5951,7 +5951,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5971,7 +5971,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5988,7 +5988,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -6005,7 +6005,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -6023,7 +6023,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -6038,7 +6038,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -6054,7 +6054,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-support", "frame-system", @@ -6071,7 +6071,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6091,7 +6091,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "parity-scale-codec", "sp-api", @@ -6101,7 +6101,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-support", "frame-system", @@ -6118,7 +6118,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6141,7 +6141,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -6158,7 +6158,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -6173,7 +6173,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-support", "frame-system", @@ -6187,7 +6187,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -6205,7 +6205,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -6220,7 +6220,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6238,7 +6238,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -6254,7 +6254,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-support", "frame-system", @@ -6275,7 +6275,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -6291,7 +6291,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-support", "frame-system", @@ -6305,7 +6305,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6328,7 +6328,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6339,7 +6339,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "log", "sp-arithmetic", @@ -6348,7 +6348,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-support", "frame-system", @@ -6377,7 +6377,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -6395,7 +6395,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -6414,7 +6414,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-support", "frame-system", @@ -6430,7 +6430,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6445,7 +6445,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6456,7 +6456,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -6473,7 +6473,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -6488,7 +6488,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -6504,7 +6504,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -6519,7 +6519,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-benchmarking", "frame-support", @@ -6534,7 +6534,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "frame-support", "frame-system", @@ -6552,7 +6552,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7106,7 +7106,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7121,7 +7121,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7135,7 +7135,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "derive_more", "fatality", @@ -7158,7 +7158,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "fatality", "futures", @@ -7179,7 +7179,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "clap", "frame-benchmarking-cli", @@ -7205,7 +7205,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7246,7 +7246,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "always-assert", "bitvec", @@ -7268,7 +7268,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7281,7 +7281,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "derive_more", "fatality", @@ -7306,7 +7306,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7320,7 +7320,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "futures", "futures-timer", @@ -7340,7 +7340,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "always-assert", "async-trait", @@ -7364,7 +7364,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "futures", "parity-scale-codec", @@ -7382,7 +7382,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "bitvec", "derive_more", @@ -7411,7 +7411,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "bitvec", "futures", @@ -7431,7 +7431,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "bitvec", "fatality", @@ -7450,7 +7450,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7465,7 +7465,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "async-trait", "futures", @@ -7483,7 +7483,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7498,7 +7498,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "futures", "futures-timer", @@ -7515,7 +7515,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "fatality", "futures", @@ -7534,7 +7534,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "async-trait", "futures", @@ -7551,7 +7551,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "bitvec", "fatality", @@ -7569,7 +7569,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "always-assert", "assert_matches", @@ -7601,7 +7601,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "futures", "polkadot-node-primitives", @@ -7617,7 +7617,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "futures", "memory-lru", @@ -7633,7 +7633,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "async-std", "lazy_static", @@ -7651,7 +7651,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "bs58", "futures", @@ -7670,7 +7670,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "async-trait", "derive_more", @@ -7693,7 +7693,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "bounded-vec", "futures", @@ -7715,7 +7715,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7725,7 +7725,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "async-trait", "futures", @@ -7743,7 +7743,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "async-trait", "derive_more", @@ -7766,7 +7766,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "async-trait", "derive_more", @@ -7799,7 +7799,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "async-trait", "futures", @@ -7822,7 +7822,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "derive_more", "frame-support", @@ -7920,7 +7920,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7935,7 +7935,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "bitvec", "frame-system", @@ -7965,7 +7965,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7997,7 +7997,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "beefy-primitives", "bitvec", @@ -8086,7 +8086,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "beefy-primitives", "bitvec", @@ -8133,7 +8133,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "frame-support", "polkadot-primitives", @@ -8145,7 +8145,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "bs58", "parity-scale-codec", @@ -8157,7 +8157,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "bitflags", "bitvec", @@ -8200,7 +8200,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "async-trait", "beefy-gadget", @@ -8305,7 +8305,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8326,7 +8326,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8336,7 +8336,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8361,7 +8361,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "beefy-primitives", "bitvec", @@ -8422,7 +8422,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "frame-benchmarking", "frame-system", @@ -9056,7 +9056,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9175,7 +9175,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9259,7 +9259,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "frame-support", "polkadot-primitives", @@ -9429,7 +9429,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "log", "sp-core", @@ -9440,7 +9440,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "async-trait", "futures", @@ -9467,7 +9467,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "futures", "futures-timer", @@ -9490,7 +9490,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9506,7 +9506,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9523,7 +9523,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9534,7 +9534,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "array-bytes", "chrono", @@ -9574,7 +9574,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "fnv", "futures", @@ -9602,7 +9602,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "hash-db", "kvdb", @@ -9627,7 +9627,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "async-trait", "futures", @@ -9651,7 +9651,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "async-trait", "futures", @@ -9680,7 +9680,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "async-trait", "fork-tree", @@ -9722,7 +9722,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "futures", "jsonrpsee", @@ -9744,7 +9744,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9757,7 +9757,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "async-trait", "futures", @@ -9781,7 +9781,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9808,7 +9808,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "environmental", "parity-scale-codec", @@ -9824,7 +9824,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "log", "parity-scale-codec", @@ -9839,7 +9839,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9859,7 +9859,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "ahash", "array-bytes", @@ -9900,7 +9900,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "finality-grandpa", "futures", @@ -9921,7 +9921,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "ansi_term", "futures", @@ -9938,7 +9938,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "array-bytes", "async-trait", @@ -9953,7 +9953,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "array-bytes", "async-trait", @@ -10000,7 +10000,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "cid", "futures", @@ -10020,7 +10020,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "async-trait", "bitflags", @@ -10046,7 +10046,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "ahash", "futures", @@ -10064,7 +10064,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "array-bytes", "futures", @@ -10085,7 +10085,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "array-bytes", "fork-tree", @@ -10101,6 +10101,7 @@ dependencies = [ "sc-consensus", "sc-network-common", "sc-peerset", + "sc-utils", "smallvec", "sp-arithmetic", "sp-blockchain", @@ -10114,7 +10115,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "array-bytes", "futures", @@ -10133,7 +10134,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "array-bytes", "bytes", @@ -10163,7 +10164,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "futures", "libp2p", @@ -10176,7 +10177,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10185,7 +10186,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "futures", "hash-db", @@ -10215,7 +10216,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "futures", "jsonrpsee", @@ -10238,7 +10239,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "futures", "jsonrpsee", @@ -10251,7 +10252,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "futures", "hex", @@ -10270,7 +10271,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "async-trait", "directories", @@ -10341,7 +10342,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "log", "parity-scale-codec", @@ -10355,7 +10356,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10374,7 +10375,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "futures", "libc", @@ -10393,7 +10394,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "chrono", "futures", @@ -10411,7 +10412,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "ansi_term", "atty", @@ -10442,7 +10443,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10453,7 +10454,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "async-trait", "futures", @@ -10480,7 +10481,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "async-trait", "futures", @@ -10494,7 +10495,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "futures", "futures-timer", @@ -10924,7 +10925,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "enumn", "parity-scale-codec", @@ -11000,7 +11001,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "hash-db", "log", @@ -11018,7 +11019,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "blake2", "proc-macro-crate", @@ -11030,7 +11031,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "parity-scale-codec", "scale-info", @@ -11043,7 +11044,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "integer-sqrt", "num-traits", @@ -11058,7 +11059,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "parity-scale-codec", "scale-info", @@ -11071,7 +11072,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "async-trait", "parity-scale-codec", @@ -11083,7 +11084,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "parity-scale-codec", "sp-api", @@ -11095,7 +11096,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "futures", "log", @@ -11113,7 +11114,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "async-trait", "futures", @@ -11132,7 +11133,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "async-trait", "parity-scale-codec", @@ -11150,7 +11151,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "async-trait", "merlin", @@ -11173,7 +11174,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "parity-scale-codec", "scale-info", @@ -11187,7 +11188,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "parity-scale-codec", "scale-info", @@ -11200,7 +11201,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "array-bytes", "base58", @@ -11246,7 +11247,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "blake2", "byteorder", @@ -11260,7 +11261,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "proc-macro2", "quote", @@ -11271,7 +11272,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11280,7 +11281,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "proc-macro2", "quote", @@ -11290,7 +11291,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "environmental", "parity-scale-codec", @@ -11301,7 +11302,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "finality-grandpa", "log", @@ -11319,7 +11320,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11333,7 +11334,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "bytes", "futures", @@ -11359,7 +11360,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "lazy_static", "sp-core", @@ -11370,7 +11371,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "async-trait", "futures", @@ -11387,7 +11388,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "thiserror", "zstd", @@ -11396,7 +11397,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "log", "parity-scale-codec", @@ -11412,7 +11413,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "parity-scale-codec", "scale-info", @@ -11426,7 +11427,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "sp-api", "sp-core", @@ -11436,7 +11437,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "backtrace", "lazy_static", @@ -11446,7 +11447,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "rustc-hash", "serde", @@ -11456,7 +11457,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "either", "hash256-std-hasher", @@ -11479,7 +11480,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11497,7 +11498,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "Inflector", "proc-macro-crate", @@ -11509,7 +11510,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "log", "parity-scale-codec", @@ -11523,7 +11524,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "serde", "serde_json", @@ -11532,7 +11533,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "parity-scale-codec", "scale-info", @@ -11546,7 +11547,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "parity-scale-codec", "scale-info", @@ -11557,7 +11558,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "hash-db", "log", @@ -11579,12 +11580,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11597,7 +11598,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "log", "sp-core", @@ -11610,7 +11611,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "async-trait", "futures-timer", @@ -11626,7 +11627,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "parity-scale-codec", "sp-std", @@ -11638,7 +11639,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "sp-api", "sp-runtime", @@ -11647,7 +11648,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "async-trait", "log", @@ -11663,7 +11664,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "ahash", "hash-db", @@ -11686,7 +11687,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11703,7 +11704,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11714,7 +11715,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "impl-trait-for-tuples", "log", @@ -11727,7 +11728,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -12023,7 +12024,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "platforms", ] @@ -12031,7 +12032,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -12052,7 +12053,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "futures-util", "hyper", @@ -12065,7 +12066,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "jsonrpsee", "log", @@ -12086,7 +12087,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "array-bytes", "async-trait", @@ -12112,7 +12113,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "futures", "substrate-test-utils-derive", @@ -12122,7 +12123,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12133,7 +12134,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "ansi_term", "build-helper", @@ -12241,7 +12242,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "frame-support", "polkadot-primitives", @@ -12521,7 +12522,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12532,7 +12533,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12659,7 +12660,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f3139874cb50f9028ecba9bdbd3004e7f3f228f5" +source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" dependencies = [ "clap", "frame-try-runtime", @@ -12679,6 +12680,7 @@ dependencies = [ "sp-runtime", "sp-state-machine", "sp-version", + "sp-weights", "zstd", ] @@ -13247,7 +13249,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "beefy-primitives", "bitvec", @@ -13337,7 +13339,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "frame-support", "polkadot-primitives", @@ -13620,7 +13622,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13634,7 +13636,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "frame-support", "frame-system", @@ -13654,7 +13656,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "frame-benchmarking", "frame-support", @@ -13672,7 +13674,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#efcaa57d5f9d72c1c3fa79dcd929da9cced3af74" +source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" dependencies = [ "Inflector", "proc-macro2", diff --git a/client/relay-chain-minimal-node/src/network.rs b/client/relay-chain-minimal-node/src/network.rs index b765b9123c..bd4b0889a8 100644 --- a/client/relay-chain-minimal-node/src/network.rs +++ b/client/relay-chain-minimal-node/src/network.rs @@ -26,6 +26,7 @@ use sc_network_common::{ NonDefaultSetConfig, NonReservedPeerMode, NotificationHandshake, ProtocolId, SetConfig, }, protocol::role::Roles, + service::NetworkSyncForkRequest, sync::{message::BlockAnnouncesHandshake, Metrics, SyncStatus}, }; use sc_network_light::light_client_requests; @@ -92,6 +93,7 @@ pub(crate) fn build_collator_network( protocol_id, metrics_registry: config.prometheus_config.as_ref().map(|config| config.registry.clone()), block_announce_config, + chain_sync_service: Box::new(DummyChainSyncService::(Default::default())), block_request_protocol_config, state_request_protocol_config, warp_sync_protocol_config: None, @@ -420,6 +422,14 @@ impl sc_network_common::sync::ChainSync for DummyChainSync { ) -> Result { unimplemented!("Not supported on the RPC collator") } + + fn poll( + &mut self, + _cx: &mut std::task::Context, + ) -> std::task::Poll::Header>> + { + std::task::Poll::Pending + } } struct DummyImportQueue; @@ -448,3 +458,9 @@ impl sc_service::ImportQueue for DummyImportQueue { ) { } } + +struct DummyChainSyncService(std::marker::PhantomData); + +impl NetworkSyncForkRequest> for DummyChainSyncService { + fn set_sync_fork_request(&self, _peers: Vec, _hash: B::Hash, _number: NumberFor) {} +} From 220bc559f064d38485d5a21e2ba91a8a237e9d16 Mon Sep 17 00:00:00 2001 From: Chevdor Date: Mon, 17 Oct 2022 16:19:09 +0200 Subject: [PATCH 21/48] GHA updates and pin (#1768) * Pin checkout to v3.1.0 and update srtool-actions to v0.6.0 * Pin GHA ruby/setup-ruby to 1.118.0 * Update and pin GHA deps * Pin all external GHA deps --- .github/workflows/check-labels.yml | 2 +- .github/workflows/docs.yml | 2 +- .github/workflows/fmt-check.yml | 8 +++--- .github/workflows/release-01_branch-check.yml | 2 +- .../workflows/release-10_rc-automation.yml | 2 +- ...e-20_extrinsic-ordering-check-from-bin.yml | 2 +- ...e-21_extrinsic-ordering-check-from-two.yml | 2 +- .github/workflows/release-30_create-draft.yml | 26 +++++++++---------- .../workflows/release-50_docker-manual.yml | 4 +-- .github/workflows/release-50_docker.yml | 4 +-- .github/workflows/srtool.yml | 8 +++--- 11 files changed, 31 insertions(+), 31 deletions(-) diff --git a/.github/workflows/check-labels.yml b/.github/workflows/check-labels.yml index f0f5556ebe..e9d0cf061d 100644 --- a/.github/workflows/check-labels.yml +++ b/.github/workflows/check-labels.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.ref }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index b9f73c2a35..ddbfd733b9 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -17,7 +17,7 @@ jobs: protoc --version - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 - name: Rust versions run: rustup show diff --git a/.github/workflows/fmt-check.yml b/.github/workflows/fmt-check.yml index 8f68be7a4a..9d2af9bb2c 100644 --- a/.github/workflows/fmt-check.yml +++ b/.github/workflows/fmt-check.yml @@ -15,7 +15,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Install Rust nightly toolchain - uses: actions-rs/toolchain@v1 + uses: actions-rs/toolchain@b2417cde72dcf67f306c0ae8e0828a81bf0b189f # v1.0.7 with: profile: minimal toolchain: nightly @@ -23,7 +23,7 @@ jobs: components: clippy, rustfmt - name: Cache Dependencies & Build Outputs - uses: actions/cache@v3 + uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 # v3.0.11 with: path: | ~/.cargo/registry @@ -31,10 +31,10 @@ jobs: target key: ${{ runner.os }}-${{ matrix.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - - uses: actions/checkout@v3 + - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 - name: Cargo fmt - uses: actions-rs/cargo@v1 + uses: actions-rs/cargo@ae10961054e4aa8b4aa7dffede299aaf087aa33b # v1.0.3 with: command: fmt args: --all -- --check diff --git a/.github/workflows/release-01_branch-check.yml b/.github/workflows/release-01_branch-check.yml index a39c635af3..f65e45e47b 100644 --- a/.github/workflows/release-01_branch-check.yml +++ b/.github/workflows/release-01_branch-check.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 with: fetch-depth: 0 diff --git a/.github/workflows/release-10_rc-automation.yml b/.github/workflows/release-10_rc-automation.yml index 1357df0c53..64b55a7807 100644 --- a/.github/workflows/release-10_rc-automation.yml +++ b/.github/workflows/release-10_rc-automation.yml @@ -17,7 +17,7 @@ jobs: pre-releases: true steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 with: fetch-depth: 0 - id: compute_tag diff --git a/.github/workflows/release-20_extrinsic-ordering-check-from-bin.yml b/.github/workflows/release-20_extrinsic-ordering-check-from-bin.yml index 442f7793f4..16424ba03d 100644 --- a/.github/workflows/release-20_extrinsic-ordering-check-from-bin.yml +++ b/.github/workflows/release-20_extrinsic-ordering-check-from-bin.yml @@ -79,7 +79,7 @@ jobs: continue-on-error: true - name: Save output as artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0 with: name: ${{ env.CHAIN }} path: | diff --git a/.github/workflows/release-21_extrinsic-ordering-check-from-two.yml b/.github/workflows/release-21_extrinsic-ordering-check-from-two.yml index 7956aff249..a8d9a3bcc3 100644 --- a/.github/workflows/release-21_extrinsic-ordering-check-from-two.yml +++ b/.github/workflows/release-21_extrinsic-ordering-check-from-two.yml @@ -108,7 +108,7 @@ jobs: cat output.txt - name: Save output as artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0 with: name: ${{ matrix.runtime }} path: | diff --git a/.github/workflows/release-30_create-draft.yml b/.github/workflows/release-30_create-draft.yml index 68d0a38352..ffd33d6f1e 100644 --- a/.github/workflows/release-30_create-draft.yml +++ b/.github/workflows/release-30_create-draft.yml @@ -62,13 +62,13 @@ jobs: runtime: rococo-parachain steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 with: ref: ${{ github.event.inputs.ref2 }} - name: Cache target dir if: ${{ github.event.inputs.release_type != 'client' }} - uses: actions/cache@v3 + uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 # v3.0.11 with: path: "${{ github.workspace }}/runtime/${{ matrix.runtime }}/target" key: srtool-target-${{ matrix.runtime }}-${{ github.sha }} @@ -79,7 +79,7 @@ jobs: - name: Build ${{ matrix.runtime }} runtime if: ${{ github.event.inputs.release_type != 'client' }} id: srtool_build - uses: chevdor/srtool-actions@v0.5.0 + uses: chevdor/srtool-actions@v0.6.0 with: image: paritytech/srtool chain: ${{ matrix.runtime }} @@ -93,14 +93,14 @@ jobs: - name: Upload ${{ matrix.runtime }} srtool json if: ${{ github.event.inputs.release_type != 'client' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0 with: name: ${{ matrix.runtime }}-srtool-json path: ${{ matrix.runtime }}-srtool-digest.json - name: Upload ${{ matrix.runtime }} runtime if: ${{ github.event.inputs.release_type != 'client' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0 with: name: ${{ matrix.runtime }}-runtime path: | @@ -114,18 +114,18 @@ jobs: asset_upload_url: ${{ steps.create-release.outputs.upload_url }} steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 with: fetch-depth: 0 path: cumulus ref: ${{ github.event.inputs.ref2 }} - - uses: ruby/setup-ruby@v1 + - uses: ruby/setup-ruby@eae47962baca661befdfd24e4d6c34ade04858f7 # v1.118.0 with: ruby-version: 3.0.0 - name: Download srtool json output - uses: actions/download-artifact@v3 + uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741 # v3.0.0 - name: Prepare tooling run: | @@ -177,14 +177,14 @@ jobs: - name: Archive srtool json if: ${{ github.event.inputs.release_type != 'client' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0 with: name: srtool-json path: | **/*-srtool-digest.json - name: Archive context artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0 with: name: release-notes-context path: | @@ -228,14 +228,14 @@ jobs: runtime: rococo-parachain steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 with: ref: ${{ github.event.inputs.ref2 }} - name: Download artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741 # v3.0.0 - - uses: ruby/setup-ruby@v1 + - uses: ruby/setup-ruby@eae47962baca661befdfd24e4d6c34ade04858f7 # v1.118.0 with: ruby-version: 3.0.0 diff --git a/.github/workflows/release-50_docker-manual.yml b/.github/workflows/release-50_docker-manual.yml index 0da9e0c4f7..487b104a1a 100644 --- a/.github/workflows/release-50_docker-manual.yml +++ b/.github/workflows/release-50_docker-manual.yml @@ -25,7 +25,7 @@ jobs: steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 with: ref: ${{ github.event.release.tag_name }} @@ -91,7 +91,7 @@ jobs: ./docker/scripts/build-injected-image.sh - name: Login to Dockerhub - uses: docker/login-action@v2 + uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v2.1.0 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} diff --git a/.github/workflows/release-50_docker.yml b/.github/workflows/release-50_docker.yml index 9f8eb3c91a..fce5e929d9 100644 --- a/.github/workflows/release-50_docker.yml +++ b/.github/workflows/release-50_docker.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 with: ref: ${{ github.event.release.tag_name }} @@ -90,7 +90,7 @@ jobs: ./docker/scripts/build-injected-image.sh - name: Login to Dockerhub - uses: docker/login-action@v2 + uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v2.1.0 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} diff --git a/.github/workflows/srtool.yml b/.github/workflows/srtool.yml index 85d3569ed8..82b8585b35 100644 --- a/.github/workflows/srtool.yml +++ b/.github/workflows/srtool.yml @@ -48,13 +48,13 @@ jobs: - category: testing runtime: rococo-parachain steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 with: fetch-depth: 0 - name: Srtool build id: srtool_build - uses: chevdor/srtool-actions@v0.5.0 + uses: chevdor/srtool-actions@v0.6.0 with: chain: ${{ matrix.runtime }} runtime_dir: parachains/runtimes/${{ matrix.category }}/${{ matrix.runtime }} @@ -68,7 +68,7 @@ jobs: # it takes a while to build the runtime, so let's save the artifact as soon as we have it - name: Archive Artifacts for ${{ matrix.runtime }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0 with: name: ${{ matrix.runtime }}-runtime path: | @@ -106,7 +106,7 @@ jobs: tee ${{ matrix.runtime }}-diff.txt - name: Archive Subwasm results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0 with: name: ${{ matrix.runtime }}-runtime path: | From b24d7285e8cf6b90e78b29475fa84293671cf886 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Oct 2022 09:31:07 +0200 Subject: [PATCH 22/48] Bump proc-macro2 from 1.0.46 to 1.0.47 (#1774) Bumps [proc-macro2](https://github.com/dtolnay/proc-macro2) from 1.0.46 to 1.0.47. - [Release notes](https://github.com/dtolnay/proc-macro2/releases) - [Commits](https://github.com/dtolnay/proc-macro2/compare/1.0.46...1.0.47) --- updated-dependencies: - dependency-name: proc-macro2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- pallets/parachain-system/proc-macro/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d4a98807fc..0a5146faaf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8620,9 +8620,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.46" +version = "1.0.47" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94e2ef8dbfc347b10c094890f778ee2e36ca9bb4262e86dc99cd217e35f3470b" +checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725" dependencies = [ "unicode-ident", ] diff --git a/pallets/parachain-system/proc-macro/Cargo.toml b/pallets/parachain-system/proc-macro/Cargo.toml index 0bedb8660e..0620702e42 100644 --- a/pallets/parachain-system/proc-macro/Cargo.toml +++ b/pallets/parachain-system/proc-macro/Cargo.toml @@ -10,7 +10,7 @@ proc-macro = true [dependencies] syn = "1.0.102" -proc-macro2 = "1.0.46" +proc-macro2 = "1.0.47" quote = "1.0.21" proc-macro-crate = "1.2.1" From cf9d6bb43c8ca36d2149315030c09187400cfd7c Mon Sep 17 00:00:00 2001 From: Muharem Ismailov Date: Tue, 18 Oct 2022 11:24:29 +0200 Subject: [PATCH 23/48] Runtime release checklist template update (#1762) * Runtime release checklist template update * Apply suggestions from code review Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Squirrel * remove check * xcm 50% * xcm config check update * post release * update post release check * update post release check Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> Co-authored-by: Squirrel --- .github/ISSUE_TEMPLATE/release-runtime.md | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/release-runtime.md b/.github/ISSUE_TEMPLATE/release-runtime.md index 8ebce6ff15..055326f0a1 100644 --- a/.github/ISSUE_TEMPLATE/release-runtime.md +++ b/.github/ISSUE_TEMPLATE/release-runtime.md @@ -6,6 +6,10 @@ title: Release Checklist for Runtime {{ env.VERSION }} # Release Checklist - Runtimes +**All** following checks must be completed before publishing a new release. +The release process is owned and led by @paritytech/release-engineering team. +The checks marked with :crab: are meant to be checked by [a runtime engineer](https://github.com/paritytech/cumulus/issues/1761). + ## Runtimes Release ### Codebase @@ -13,19 +17,17 @@ These checks should be performed on the codebase. - [ ] the [`spec_version`](https://github.com/paritytech/cumulus/blob/master/docs/release.md#spec-version) has been incremented since the last release for any native runtimes from any existing use on public (non-private/test) networks -- [ ] previously [completed migrations](https://github.com/paritytech/cumulus/blob/master/docs/release.md#old-migrations-removed) are - removed for any public (non-private/test) networks -- [ ] No migrations added in the last release that would need to be removed +- [ ] :crab: previously [completed migrations](https://github.com/paritytech/cumulus/blob/master/docs/release.md#old-migrations-removed) are removed for any public (non-private/test) networks - [ ] pallet and [extrinsic ordering](https://github.com/paritytech/cumulus/blob/master/docs/release.md#extrinsic-ordering--storage) as well as `SignedExtension`s have stayed the same. Bump `transaction_version` otherwise - [ ] the [benchmarks](https://github.com/paritytech/ci_cd/wiki/Benchmarks:-cumulus) ran - [ ] the weights have been updated for any modified runtime logic -- [ ] the various pieces of XCM config are sane +- [ ] :crab: the new weights are sane, there are no significant (>50%) drops or rises with no reason +- [ ] :crab: XCM config is compatible with the configurations and versions of relevant interlocutors, like the Relay Chain. ### On the release branch -The following checks can be performed after we have forked off to the release- -candidate branch or started an additional release candidate branch (rc-2, rc-3, etc) +The following checks can be performed after we have forked off to the release-candidate branch or started an additional release candidate branch (rc-2, rc-3, etc) - [ ] Verify [new migrations](https://github.com/paritytech/cumulus/blob/master/docs/release.md#new-migrations) complete successfully, and the runtime state is correctly updated for any public (non-private/test) @@ -41,6 +43,10 @@ candidate branch or started an additional release candidate branch (rc-2, rc-3, - [ ] Check that [build artifacts](https://github.com/paritytech/cumulus/blob/master/docs/release.md#build-artifacts) have been added to the draft-release. +# Post release + +- [ ] :crab: all commits (runtime version bumps, fixes) on this release branch have been merged back to master. + --- Read more about the [release documentation](https://github.com/paritytech/cumulus/blob/master/docs/release.md). From 00626c01835e7324a6c6204cbe9f08e043ca14dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Thei=C3=9Fen?= Date: Tue, 18 Oct 2022 11:56:17 +0200 Subject: [PATCH 24/48] contracts: Reduce session length and enable unstable interfaces (#1748) * Reduce session for contracts to 10 minutes * Build pallet-contracts with unstable interface * Set `MinCandidates` to 0 to allow only invulnerables as collators --- parachains/runtimes/contracts/contracts-rococo/Cargo.toml | 8 +------- parachains/runtimes/contracts/contracts-rococo/src/lib.rs | 7 ++++--- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/parachains/runtimes/contracts/contracts-rococo/Cargo.toml b/parachains/runtimes/contracts/contracts-rococo/Cargo.toml index 4bd3715fe4..2e6f65ceac 100644 --- a/parachains/runtimes/contracts/contracts-rococo/Cargo.toml +++ b/parachains/runtimes/contracts/contracts-rococo/Cargo.toml @@ -47,7 +47,7 @@ pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -pallet-contracts = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } +pallet-contracts = { git = "https://github.com/paritytech/substrate", default-features = false, features = ["unstable-interface"], branch = "master" } pallet-contracts-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } # Polkadot @@ -131,12 +131,6 @@ std = [ "cumulus-primitives-utility/std", ] -# Make contract callable functions marked as __unstable__ available. Do not enable -# on live chains as those are subject to change. -contracts-unstable-interface = [ - "pallet-contracts/unstable-interface" -] - runtime-benchmarks = [ "hex-literal", "frame-benchmarking/runtime-benchmarks", diff --git a/parachains/runtimes/contracts/contracts-rococo/src/lib.rs b/parachains/runtimes/contracts/contracts-rococo/src/lib.rs index 92ddbaf7ad..579801078a 100644 --- a/parachains/runtimes/contracts/contracts-rococo/src/lib.rs +++ b/parachains/runtimes/contracts/contracts-rococo/src/lib.rs @@ -58,7 +58,8 @@ use frame_system::limits::{BlockLength, BlockWeights}; pub use parachains_common as common; use parachains_common::{ impls::DealWithFees, opaque, AccountId, BlockNumber, Hash, Header, Index, Signature, - AVERAGE_ON_INITIALIZE_RATIO, HOURS, MAXIMUM_BLOCK_WEIGHT, NORMAL_DISPATCH_RATIO, SLOT_DURATION, + AVERAGE_ON_INITIALIZE_RATIO, MAXIMUM_BLOCK_WEIGHT, MINUTES, NORMAL_DISPATCH_RATIO, + SLOT_DURATION, }; pub use parachains_common::{AuraId, Balance}; use xcm_config::CollatorSelectionUpdateOrigin; @@ -269,7 +270,7 @@ impl parachain_info::Config for Runtime {} impl cumulus_pallet_aura_ext::Config for Runtime {} parameter_types! { - pub const Period: u32 = 6 * HOURS; + pub const Period: u32 = 10 * MINUTES; pub const Offset: u32 = 0; } @@ -303,7 +304,7 @@ impl pallet_collator_selection::Config for Runtime { type UpdateOrigin = CollatorSelectionUpdateOrigin; type PotId = PotId; type MaxCandidates = ConstU32<1000>; - type MinCandidates = ConstU32<5>; + type MinCandidates = ConstU32<0>; type MaxInvulnerables = ConstU32<100>; // should be a multiple of session or things will get inconsistent type KickThreshold = Period; From e960589cf92951fc9bcdfe3dd953adc25205229e Mon Sep 17 00:00:00 2001 From: Sebastian Kunert Date: Tue, 18 Oct 2022 13:30:22 +0200 Subject: [PATCH 25/48] Update clap to version 4 (#1745) * Bump to clap4 * Adjust to clap 4 style * Remove two more deprecated occurences of clap macro * Remove "deprecated" feature from clap * Update cargo lock * Fix group name * More skipped group names --- Cargo.lock | 1130 +++++++++++----------------- client/cli/Cargo.toml | 2 +- client/cli/src/lib.rs | 26 +- parachain-template/node/Cargo.toml | 2 +- parachain-template/node/src/cli.rs | 12 +- polkadot-parachain/Cargo.toml | 2 +- polkadot-parachain/src/cli.rs | 14 +- test/service/Cargo.toml | 2 +- test/service/src/cli.rs | 24 +- 9 files changed, 465 insertions(+), 749 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0a5146faaf..dacb281d13 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -332,9 +332,9 @@ dependencies = [ [[package]] name = "async-std-resolver" -version = "0.21.2" +version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f2f8a4a203be3325981310ab243a28e6e4ea55b6519bffce05d41ab60e09ad8" +checksum = "6ba50e24d9ee0a8950d3d03fc6d0dd10aa14b5de3b101949b4e160f7fee7c723" dependencies = [ "async-std", "async-trait", @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "beefy-primitives", "sp-api", @@ -536,7 +536,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "scale-info", @@ -549,12 +549,6 @@ dependencies = [ "sp-std", ] -[[package]] -name = "bimap" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50ae17cabbc8a38a1e3e4c1a6a664e9a09672dc14d0896fa8d865d3a5a446b07" - [[package]] name = "bincode" version = "1.3.3" @@ -662,7 +656,7 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" dependencies = [ - "block-padding 0.1.5", + "block-padding", "byte-tools", "byteorder", "generic-array 0.12.4", @@ -674,7 +668,6 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" dependencies = [ - "block-padding 0.2.1", "generic-array 0.14.4", ] @@ -696,12 +689,6 @@ dependencies = [ "byte-tools", ] -[[package]] -name = "block-padding" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" - [[package]] name = "blocking" version = "1.1.0" @@ -993,22 +980,32 @@ version = "3.2.22" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "86447ad904c7fb335a790c9d7fe3d0d971dc523b8ccd1561a520de9a85302750" dependencies = [ - "atty", "bitflags", - "clap_derive", - "clap_lex", + "clap_lex 0.2.2", "indexmap", - "once_cell", - "strsim", - "termcolor", "textwrap", ] [[package]] -name = "clap_derive" -version = "3.2.18" +name = "clap" +version = "4.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea0c8bce528c4be4da13ea6fead8965e95b6073585a2f05204bd8f4119f82a65" +checksum = "4ed45cc2c62a3eff523e718d8576ba762c83a3146151093283ac62ae11933a73" +dependencies = [ + "atty", + "bitflags", + "clap_derive", + "clap_lex 0.3.0", + "once_cell", + "strsim", + "termcolor", +] + +[[package]] +name = "clap_derive" +version = "4.0.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db342ce9fda24fb191e2ed4e102055a4d381c1086a06630174cd8da8d5d917ce" dependencies = [ "heck", "proc-macro-error", @@ -1027,12 +1024,12 @@ dependencies = [ ] [[package]] -name = "cmake" -version = "0.1.48" +name = "clap_lex" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8ad8cef104ac57b68b89df3208164d228503abbdce70f6880ffa3d970e7443a" +checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8" dependencies = [ - "cc", + "os_str_bytes", ] [[package]] @@ -1370,7 +1367,7 @@ dependencies = [ "atty", "cast", "ciborium", - "clap", + "clap 3.2.22", "criterion-plot", "futures", "itertools", @@ -1519,22 +1516,11 @@ dependencies = [ "cipher", ] -[[package]] -name = "cuckoofilter" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b810a8449931679f64cd7eef1bbd0fa315801b6d5d9cdc1ace2804d6529eee18" -dependencies = [ - "byteorder", - "fnv", - "rand 0.7.3", -] - [[package]] name = "cumulus-client-cli" version = "0.1.0" dependencies = [ - "clap", + "clap 4.0.11", "parity-scale-codec", "sc-chain-spec", "sc-cli", @@ -2160,7 +2146,7 @@ name = "cumulus-test-service" version = "0.1.0" dependencies = [ "async-trait", - "clap", + "clap 4.0.11", "criterion", "cumulus-client-cli", "cumulus-client-consensus-common", @@ -2529,9 +2515,9 @@ dependencies = [ [[package]] name = "enum-as-inner" -version = "0.4.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21cdad81446a7f7dc43f6a77409efeb9733d2fa65553efef6018ef257c959b73" +checksum = "c9720bba047d567ffc8a3cba48bf19126600e249ab7f128e9233e6376976a116" dependencies = [ "heck", "proc-macro2", @@ -2815,7 +2801,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", ] @@ -2838,7 +2824,7 @@ checksum = "85dcb89d2b10c5f6133de2efd8c11959ce9dbb46a2f7a4cab208c4eeda6ce1ab" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -2861,12 +2847,12 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "Inflector", "array-bytes", "chrono", - "clap", + "clap 4.0.11", "comfy-table", "frame-benchmarking", "frame-support", @@ -2912,7 +2898,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2923,7 +2909,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2939,7 +2925,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -2968,7 +2954,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "bitflags", "frame-metadata", @@ -3000,7 +2986,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "Inflector", "cfg-expr", @@ -3014,7 +3000,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3026,7 +3012,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "proc-macro2", "quote", @@ -3036,7 +3022,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "log", @@ -3054,7 +3040,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -3069,7 +3055,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "sp-api", @@ -3078,7 +3064,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "parity-scale-codec", @@ -3462,12 +3448,6 @@ version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0" -[[package]] -name = "hex_fmt" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f" - [[package]] name = "hmac" version = "0.8.1" @@ -3631,9 +3611,9 @@ dependencies = [ [[package]] name = "if-watch" -version = "1.0.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae8f4a3c3d4c89351ca83e120c1c00b27df945d38e05695668c9d4b4f7bc52f3" +checksum = "065c008e570a43c00de6aed9714035e5ea6a498c255323db9091722af6ee67dd" dependencies = [ "async-io", "core-foundation", @@ -3945,7 +3925,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "beefy-primitives", "bitvec", @@ -4043,7 +4023,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "frame-support", "polkadot-primitives", @@ -4134,9 +4114,9 @@ checksum = "c7d73b3f436185384286bd8098d17ec07c9a7d2388a6599f824d8502b529702a" [[package]] name = "libp2p" -version = "0.46.1" +version = "0.49.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81327106887e42d004fbdab1fef93675be2e2e07c1b95fce45e2cc813485611d" +checksum = "ec878fda12ebec479186b3914ebc48ff180fa4c51847e11a1a68bf65249e02c1" dependencies = [ "bytes", "futures", @@ -4144,12 +4124,8 @@ dependencies = [ "getrandom 0.2.3", "instant", "lazy_static", - "libp2p-autonat", "libp2p-core", - "libp2p-deflate", "libp2p-dns", - "libp2p-floodsub", - "libp2p-gossipsub", "libp2p-identify", "libp2p-kad", "libp2p-mdns", @@ -4157,49 +4133,24 @@ dependencies = [ "libp2p-mplex", "libp2p-noise", "libp2p-ping", - "libp2p-plaintext", - "libp2p-pnet", - "libp2p-relay", - "libp2p-rendezvous", "libp2p-request-response", "libp2p-swarm", "libp2p-swarm-derive", "libp2p-tcp", - "libp2p-uds", "libp2p-wasm-ext", "libp2p-websocket", "libp2p-yamux", "multiaddr", "parking_lot 0.12.1", "pin-project", - "rand 0.7.3", "smallvec", ] -[[package]] -name = "libp2p-autonat" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4decc51f3573653a9f4ecacb31b1b922dd20c25a6322bb15318ec04287ec46f9" -dependencies = [ - "async-trait", - "futures", - "futures-timer", - "instant", - "libp2p-core", - "libp2p-request-response", - "libp2p-swarm", - "log", - "prost 0.10.3", - "prost-build 0.10.4", - "rand 0.8.5", -] - [[package]] name = "libp2p-core" -version = "0.34.0" +version = "0.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbf9b94cefab7599b2d3dff2f93bee218c6621d68590b23ede4485813cbcece6" +checksum = "799676bb0807c788065e57551c6527d461ad572162b0519d1958946ff9e0539d" dependencies = [ "asn1_der", "bs58", @@ -4210,17 +4161,15 @@ dependencies = [ "futures-timer", "instant", "lazy_static", - "libsecp256k1", "log", "multiaddr", "multihash", "multistream-select", "parking_lot 0.12.1", "pin-project", - "prost 0.10.3", - "prost-build 0.10.4", + "prost", + "prost-build", "rand 0.8.5", - "ring", "rw-stream-sink", "sha2 0.10.2", "smallvec", @@ -4230,22 +4179,11 @@ dependencies = [ "zeroize", ] -[[package]] -name = "libp2p-deflate" -version = "0.34.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0183dc2a3da1fbbf85e5b6cf51217f55b14f5daea0c455a9536eef646bfec71" -dependencies = [ - "flate2", - "futures", - "libp2p-core", -] - [[package]] name = "libp2p-dns" -version = "0.34.0" +version = "0.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6cbf54723250fa5d521383be789bf60efdabe6bacfb443f87da261019a49b4b5" +checksum = "2322c9fb40d99101def6a01612ee30500c89abbbecb6297b3cd252903a4c1720" dependencies = [ "async-std-resolver", "futures", @@ -4256,57 +4194,11 @@ dependencies = [ "trust-dns-resolver", ] -[[package]] -name = "libp2p-floodsub" -version = "0.37.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98a4b6ffd53e355775d24b76f583fdda54b3284806f678499b57913adb94f231" -dependencies = [ - "cuckoofilter", - "fnv", - "futures", - "libp2p-core", - "libp2p-swarm", - "log", - "prost 0.10.3", - "prost-build 0.10.4", - "rand 0.7.3", - "smallvec", -] - -[[package]] -name = "libp2p-gossipsub" -version = "0.39.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74b4b888cfbeb1f5551acd3aa1366e01bf88ede26cc3c4645d0d2d004d5ca7b0" -dependencies = [ - "asynchronous-codec", - "base64", - "byteorder", - "bytes", - "fnv", - "futures", - "hex_fmt", - "instant", - "libp2p-core", - "libp2p-swarm", - "log", - "prometheus-client", - "prost 0.10.3", - "prost-build 0.10.4", - "rand 0.7.3", - "regex", - "sha2 0.10.2", - "smallvec", - "unsigned-varint", - "wasm-timer", -] - [[package]] name = "libp2p-identify" -version = "0.37.0" +version = "0.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c50b585518f8efd06f93ac2f976bd672e17cdac794644b3117edd078e96bda06" +checksum = "dcf9a121f699e8719bda2e6e9e9b6ddafc6cff4602471d6481c1067930ccb29b" dependencies = [ "asynchronous-codec", "futures", @@ -4314,9 +4206,9 @@ dependencies = [ "libp2p-core", "libp2p-swarm", "log", - "lru 0.7.7", - "prost 0.10.3", - "prost-build 0.10.4", + "lru 0.8.1", + "prost", + "prost-build", "prost-codec", "smallvec", "thiserror", @@ -4325,9 +4217,9 @@ dependencies = [ [[package]] name = "libp2p-kad" -version = "0.38.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "740862893bb5f06ac24acc9d49bdeadc3a5e52e51818a30a25c1f3519da2c851" +checksum = "6721c200e2021f6c3fab8b6cf0272ead8912d871610ee194ebd628cecf428f22" dependencies = [ "arrayvec 0.7.2", "asynchronous-codec", @@ -4340,9 +4232,9 @@ dependencies = [ "libp2p-core", "libp2p-swarm", "log", - "prost 0.10.3", - "prost-build 0.10.4", - "rand 0.7.3", + "prost", + "prost-build", + "rand 0.8.5", "sha2 0.10.2", "smallvec", "thiserror", @@ -4353,16 +4245,15 @@ dependencies = [ [[package]] name = "libp2p-mdns" -version = "0.38.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66e5e5919509603281033fd16306c61df7a4428ce274b67af5e14b07de5cdcb2" +checksum = "761704e727f7d68d58d7bc2231eafae5fc1b9814de24290f126df09d4bd37a15" dependencies = [ "async-io", "data-encoding", "dns-parser", "futures", "if-watch", - "lazy_static", "libp2p-core", "libp2p-swarm", "log", @@ -4374,25 +4265,23 @@ dependencies = [ [[package]] name = "libp2p-metrics" -version = "0.7.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef8aff4a1abef42328fbb30b17c853fff9be986dc39af17ee39f9c5f755c5e0c" +checksum = "9ee31b08e78b7b8bfd1c4204a9dd8a87b4fcdf6dafc57eb51701c1c264a81cb9" dependencies = [ "libp2p-core", - "libp2p-gossipsub", "libp2p-identify", "libp2p-kad", "libp2p-ping", - "libp2p-relay", "libp2p-swarm", "prometheus-client", ] [[package]] name = "libp2p-mplex" -version = "0.34.0" +version = "0.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61fd1b20638ec209c5075dfb2e8ce6a7ea4ec3cd3ad7b77f7a477c06d53322e2" +checksum = "692664acfd98652de739a8acbb0a0d670f1d67190a49be6b4395e22c37337d89" dependencies = [ "asynchronous-codec", "bytes", @@ -4401,16 +4290,16 @@ dependencies = [ "log", "nohash-hasher", "parking_lot 0.12.1", - "rand 0.7.3", + "rand 0.8.5", "smallvec", "unsigned-varint", ] [[package]] name = "libp2p-noise" -version = "0.37.0" +version = "0.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "762408cb5d84b49a600422d7f9a42c18012d8da6ebcd570f9a4a4290ba41fb6f" +checksum = "048155686bd81fe6cb5efdef0c6290f25ad32a0a42e8f4f72625cf6a505a206f" dependencies = [ "bytes", "curve25519-dalek 3.2.0", @@ -4418,8 +4307,8 @@ dependencies = [ "lazy_static", "libp2p-core", "log", - "prost 0.10.3", - "prost-build 0.10.4", + "prost", + "prost-build", "rand 0.8.5", "sha2 0.10.2", "snow", @@ -4430,9 +4319,9 @@ dependencies = [ [[package]] name = "libp2p-ping" -version = "0.37.0" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "100a6934ae1dbf8a693a4e7dd1d730fd60b774dafc45688ed63b554497c6c925" +checksum = "7228b9318d34689521349a86eb39a3c3a802c9efc99a0568062ffb80913e3f91" dependencies = [ "futures", "futures-timer", @@ -4440,95 +4329,15 @@ dependencies = [ "libp2p-core", "libp2p-swarm", "log", - "rand 0.7.3", - "void", -] - -[[package]] -name = "libp2p-plaintext" -version = "0.34.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be27bf0820a6238a4e06365b096d428271cce85a129cf16f2fe9eb1610c4df86" -dependencies = [ - "asynchronous-codec", - "bytes", - "futures", - "libp2p-core", - "log", - "prost 0.10.3", - "prost-build 0.10.4", - "unsigned-varint", - "void", -] - -[[package]] -name = "libp2p-pnet" -version = "0.22.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f1a458bbda880107b5b36fcb9b5a1ef0c329685da0e203ed692a8ebe64cc92c" -dependencies = [ - "futures", - "log", - "pin-project", - "rand 0.7.3", - "salsa20", - "sha3 0.9.1", -] - -[[package]] -name = "libp2p-relay" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4931547ee0cce03971ccc1733ff05bb0c4349fd89120a39e9861e2bbe18843c3" -dependencies = [ - "asynchronous-codec", - "bytes", - "either", - "futures", - "futures-timer", - "instant", - "libp2p-core", - "libp2p-swarm", - "log", - "pin-project", - "prost 0.10.3", - "prost-build 0.10.4", - "prost-codec", "rand 0.8.5", - "smallvec", - "static_assertions", - "thiserror", - "void", -] - -[[package]] -name = "libp2p-rendezvous" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9511c9672ba33284838e349623319c8cad2d18cfad243ae46c6b7e8a2982ea4e" -dependencies = [ - "asynchronous-codec", - "bimap", - "futures", - "futures-timer", - "instant", - "libp2p-core", - "libp2p-swarm", - "log", - "prost 0.10.3", - "prost-build 0.10.4", - "rand 0.8.5", - "sha2 0.10.2", - "thiserror", - "unsigned-varint", "void", ] [[package]] name = "libp2p-request-response" -version = "0.19.0" +version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "508a189e2795d892c8f5c1fa1e9e0b1845d32d7b0b249dbf7b05b18811361843" +checksum = "8827af16a017b65311a410bb626205a9ad92ec0473967618425039fa5231adc1" dependencies = [ "async-trait", "bytes", @@ -4537,16 +4346,16 @@ dependencies = [ "libp2p-core", "libp2p-swarm", "log", - "rand 0.7.3", + "rand 0.8.5", "smallvec", "unsigned-varint", ] [[package]] name = "libp2p-swarm" -version = "0.37.0" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95ac5be6c2de2d1ff3f7693fda6faf8a827b1f3e808202277783fea9f527d114" +checksum = "46d13df7c37807965d82930c0e4b04a659efcb6cca237373b206043db5398ecf" dependencies = [ "either", "fnv", @@ -4556,7 +4365,7 @@ dependencies = [ "libp2p-core", "log", "pin-project", - "rand 0.7.3", + "rand 0.8.5", "smallvec", "thiserror", "void", @@ -4564,48 +4373,36 @@ dependencies = [ [[package]] name = "libp2p-swarm-derive" -version = "0.28.0" +version = "0.30.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f54a64b6957249e0ce782f8abf41d97f69330d02bf229f0672d864f0650cc76" +checksum = "a0eddc4497a8b5a506013c40e8189864f9c3a00db2b25671f428ae9007f3ba32" dependencies = [ + "heck", "quote", "syn", ] [[package]] name = "libp2p-tcp" -version = "0.34.0" +version = "0.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a6771dc19aa3c65d6af9a8c65222bfc8fcd446630ddca487acd161fa6096f3b" +checksum = "9839d96761491c6d3e238e70554b856956fca0ab60feb9de2cd08eed4473fa92" dependencies = [ "async-io", "futures", "futures-timer", "if-watch", - "ipnet", "libc", "libp2p-core", "log", "socket2", ] -[[package]] -name = "libp2p-uds" -version = "0.33.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d125e3e5f0d58f3c6ac21815b20cf4b6a88b8db9dc26368ea821838f4161fd4d" -dependencies = [ - "async-std", - "futures", - "libp2p-core", - "log", -] - [[package]] name = "libp2p-wasm-ext" -version = "0.34.0" +version = "0.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec894790eec3c1608f8d1a8a0bdf0dbeb79ed4de2dce964222011c2896dfa05a" +checksum = "a17b5b8e7a73e379e47b1b77f8a82c4721e97eca01abcd18e9cd91a23ca6ce97" dependencies = [ "futures", "js-sys", @@ -4617,9 +4414,9 @@ dependencies = [ [[package]] name = "libp2p-websocket" -version = "0.36.0" +version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9808e57e81be76ff841c106b4c5974fb4d41a233a7bdd2afbf1687ac6def3818" +checksum = "3758ae6f89b2531a24b6d9f5776bda6a626b60a57600d7185d43dfa75ca5ecc4" dependencies = [ "either", "futures", @@ -4636,12 +4433,13 @@ dependencies = [ [[package]] name = "libp2p-yamux" -version = "0.38.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6dea686217a06072033dc025631932810e2f6ad784e4fafa42e27d311c7a81c" +checksum = "30f079097a21ad017fc8139460630286f02488c8c13b26affb46623aa20d8845" dependencies = [ "futures", "libp2p-core", + "log", "parking_lot 0.12.1", "thiserror", "yamux", @@ -5051,7 +4849,7 @@ dependencies = [ "digest 0.10.3", "multihash-derive", "sha2 0.10.2", - "sha3 0.10.0", + "sha3", "unsigned-varint", ] @@ -5077,9 +4875,9 @@ checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" [[package]] name = "multistream-select" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "363a84be6453a70e63513660f4894ef815daf88e3356bffcda9ca27d810ce83b" +checksum = "9bc41247ec209813e2fd414d6e16b9d94297dacf3cd613fa6ef09cd4d9755c10" dependencies = [ "bytes", "futures", @@ -5147,9 +4945,9 @@ dependencies = [ [[package]] name = "netlink-packet-route" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "733ea73609acfd7fa7ddadfb7bf709b0471668c456ad9513685af543a06342b2" +checksum = "d9ea4302b9759a7a88242299225ea3688e63c85ea136371bb6cf94fd674efaab" dependencies = [ "anyhow", "bitflags", @@ -5173,23 +4971,24 @@ dependencies = [ [[package]] name = "netlink-proto" -version = "0.9.2" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef8785b8141e8432aa45fceb922a7e876d7da3fad37fa7e7ec702ace3aa0826b" +checksum = "65b4b14489ab424703c092062176d52ba55485a89c076b4f9db05092b7223aa6" dependencies = [ "bytes", "futures", "log", "netlink-packet-core", "netlink-sys", + "thiserror", "tokio", ] [[package]] name = "netlink-sys" -version = "0.8.2" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e4c9f9547a08241bee7b6558b9b98e1f290d187de8b7cfca2bbb4937bcaa8f8" +checksum = "92b654097027250401127914afb37cb1f311df6610a9891ff07a757e94199027" dependencies = [ "async-io", "bytes", @@ -5200,15 +4999,13 @@ dependencies = [ [[package]] name = "nix" -version = "0.22.3" +version = "0.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4916f159ed8e5de0082076562152a76b7a1f64a01fd9d1e0fea002c37624faf" +checksum = "195cdbc1741b8134346d515b3a56a1c94b0912758009cfd53f99ea0f57b065fc" dependencies = [ "bitflags", - "cc", "cfg-if 1.0.0", "libc", - "memoffset", ] [[package]] @@ -5447,19 +5244,10 @@ version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64" -[[package]] -name = "owning_ref" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ff55baddef9e4ad00f88b6c743a2a8062d4c6ade126c2a528644b8e444d52ce" -dependencies = [ - "stable_deref_trait", -] - [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5480,7 +5268,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -5497,7 +5285,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5511,7 +5299,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -5527,7 +5315,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -5543,7 +5331,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -5558,7 +5346,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5582,7 +5370,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5602,7 +5390,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5617,7 +5405,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "beefy-primitives", "frame-support", @@ -5633,7 +5421,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5656,7 +5444,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5674,7 +5462,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5718,7 +5506,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5735,7 +5523,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "bitflags", "frame-benchmarking", @@ -5764,7 +5552,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "bitflags", "parity-scale-codec", @@ -5776,7 +5564,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "proc-macro2", "quote", @@ -5786,7 +5574,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5803,7 +5591,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5821,7 +5609,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5845,7 +5633,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5858,7 +5646,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5876,7 +5664,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5897,7 +5685,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5912,7 +5700,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5935,7 +5723,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5951,7 +5739,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5971,7 +5759,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5988,7 +5776,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6005,7 +5793,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -6023,7 +5811,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -6038,7 +5826,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6054,7 +5842,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -6071,7 +5859,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6091,7 +5879,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "sp-api", @@ -6101,7 +5889,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -6118,7 +5906,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6141,7 +5929,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6158,7 +5946,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6173,7 +5961,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -6187,7 +5975,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6205,7 +5993,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6220,7 +6008,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6238,7 +6026,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6254,7 +6042,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -6275,7 +6063,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6291,7 +6079,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -6305,7 +6093,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6328,7 +6116,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6339,7 +6127,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "log", "sp-arithmetic", @@ -6348,7 +6136,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -6377,7 +6165,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6395,7 +6183,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6414,7 +6202,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -6430,7 +6218,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6445,7 +6233,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6456,7 +6244,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6473,7 +6261,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6488,7 +6276,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6504,7 +6292,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6519,7 +6307,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6534,7 +6322,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "frame-support", "frame-system", @@ -6552,7 +6340,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "frame-benchmarking", "frame-support", @@ -6581,7 +6369,7 @@ dependencies = [ name = "parachain-template-node" version = "0.1.0" dependencies = [ - "clap", + "clap 4.0.11", "cumulus-client-cli", "cumulus-client-consensus-aura", "cumulus-client-consensus-common", @@ -7106,7 +6894,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7121,7 +6909,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7135,7 +6923,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "derive_more", "fatality", @@ -7158,7 +6946,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "fatality", "futures", @@ -7179,9 +6967,9 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ - "clap", + "clap 4.0.11", "frame-benchmarking-cli", "futures", "log", @@ -7205,7 +6993,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7246,7 +7034,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "always-assert", "bitvec", @@ -7268,7 +7056,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7281,7 +7069,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "derive_more", "fatality", @@ -7306,7 +7094,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7320,7 +7108,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "futures", "futures-timer", @@ -7340,7 +7128,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "always-assert", "async-trait", @@ -7364,7 +7152,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "futures", "parity-scale-codec", @@ -7382,7 +7170,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "bitvec", "derive_more", @@ -7411,7 +7199,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "bitvec", "futures", @@ -7431,7 +7219,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "bitvec", "fatality", @@ -7450,7 +7238,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7465,7 +7253,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "async-trait", "futures", @@ -7483,7 +7271,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7498,7 +7286,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "futures", "futures-timer", @@ -7515,7 +7303,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "fatality", "futures", @@ -7534,7 +7322,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "async-trait", "futures", @@ -7551,7 +7339,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "bitvec", "fatality", @@ -7569,7 +7357,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "always-assert", "assert_matches", @@ -7601,7 +7389,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "futures", "polkadot-node-primitives", @@ -7617,7 +7405,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "futures", "memory-lru", @@ -7633,7 +7421,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "async-std", "lazy_static", @@ -7651,7 +7439,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "bs58", "futures", @@ -7670,7 +7458,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "async-trait", "derive_more", @@ -7693,7 +7481,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "bounded-vec", "futures", @@ -7715,7 +7503,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7725,7 +7513,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "async-trait", "futures", @@ -7743,7 +7531,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "async-trait", "derive_more", @@ -7766,7 +7554,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "async-trait", "derive_more", @@ -7799,7 +7587,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "async-trait", "futures", @@ -7822,7 +7610,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "derive_more", "frame-support", @@ -7842,7 +7630,7 @@ version = "0.9.300" dependencies = [ "assert_cmd", "async-trait", - "clap", + "clap 4.0.11", "collectives-polkadot-runtime", "contracts-rococo-runtime", "cumulus-client-cli", @@ -7920,7 +7708,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7935,7 +7723,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "bitvec", "frame-system", @@ -7965,7 +7753,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7997,7 +7785,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "beefy-primitives", "bitvec", @@ -8086,7 +7874,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "beefy-primitives", "bitvec", @@ -8133,7 +7921,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "frame-support", "polkadot-primitives", @@ -8145,7 +7933,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "bs58", "parity-scale-codec", @@ -8157,7 +7945,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "bitflags", "bitvec", @@ -8200,7 +7988,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "async-trait", "beefy-gadget", @@ -8305,7 +8093,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8326,7 +8114,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8336,7 +8124,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8361,7 +8149,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "beefy-primitives", "bitvec", @@ -8422,7 +8210,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "frame-benchmarking", "frame-system", @@ -8643,37 +8431,27 @@ dependencies = [ [[package]] name = "prometheus-client" -version = "0.16.0" +version = "0.18.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac1abe0255c04d15f571427a2d1e00099016506cf3297b53853acd2b7eb87825" +checksum = "83cd1b99916654a69008fd66b4f9397fbe08e6e51dfe23d4417acf5d3b8cb87c" dependencies = [ "dtoa", "itoa 1.0.1", - "owning_ref", + "parking_lot 0.12.1", "prometheus-client-derive-text-encode", ] [[package]] name = "prometheus-client-derive-text-encode" -version = "0.2.0" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8e12d01b9d66ad9eb4529c57666b6263fc1993cb30261d83ead658fdd932652" +checksum = "66a455fbcb954c1a7decf3c586e860fd7889cddf4b8e164be736dbac95a953cd" dependencies = [ "proc-macro2", "quote", "syn", ] -[[package]] -name = "prost" -version = "0.10.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc03e116981ff7d8da8e5c220e374587b98d294af7ba7dd7fda761158f00086f" -dependencies = [ - "bytes", - "prost-derive 0.10.1", -] - [[package]] name = "prost" version = "0.11.0" @@ -8681,29 +8459,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "399c3c31cdec40583bb68f0b18403400d01ec4289c383aa047560439952c4dd7" dependencies = [ "bytes", - "prost-derive 0.11.0", -] - -[[package]] -name = "prost-build" -version = "0.10.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ae5a4388762d5815a9fc0dea33c56b021cdc8dde0c55e0c9ca57197254b0cab" -dependencies = [ - "bytes", - "cfg-if 1.0.0", - "cmake", - "heck", - "itertools", - "lazy_static", - "log", - "multimap", - "petgraph", - "prost 0.10.3", - "prost-types 0.10.1", - "regex", - "tempfile", - "which", + "prost-derive", ] [[package]] @@ -8719,8 +8475,8 @@ dependencies = [ "log", "multimap", "petgraph", - "prost 0.11.0", - "prost-types 0.11.1", + "prost", + "prost-types", "regex", "tempfile", "which", @@ -8728,30 +8484,17 @@ dependencies = [ [[package]] name = "prost-codec" -version = "0.1.0" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00af1e92c33b4813cc79fda3f2dbf56af5169709be0202df730e9ebc3e4cd007" +checksum = "011ae9ff8359df7915f97302d591cdd9e0e27fbd5a4ddc5bd13b71079bb20987" dependencies = [ "asynchronous-codec", "bytes", - "prost 0.10.3", + "prost", "thiserror", "unsigned-varint", ] -[[package]] -name = "prost-derive" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b670f45da57fb8542ebdbb6105a925fe571b67f9e7ed9f47a06a84e72b4e7cc" -dependencies = [ - "anyhow", - "itertools", - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "prost-derive" version = "0.11.0" @@ -8765,16 +8508,6 @@ dependencies = [ "syn", ] -[[package]] -name = "prost-types" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d0a014229361011dc8e69c8a1ec6c2e8d0f2af7c91e3ea3f5b2170298461e68" -dependencies = [ - "bytes", - "prost 0.10.3", -] - [[package]] name = "prost-types" version = "0.11.1" @@ -8782,7 +8515,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4dfaa718ad76a44b3415e6c4d53b17c8f99160dcb3a99b10470fce8ad43f6e3e" dependencies = [ "bytes", - "prost 0.11.0", + "prost", ] [[package]] @@ -9056,7 +8789,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9175,7 +8908,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9259,7 +8992,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "frame-support", "polkadot-primitives", @@ -9280,16 +9013,16 @@ dependencies = [ [[package]] name = "rtnetlink" -version = "0.9.1" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f54290e54521dac3de4149d83ddf9f62a359b3cc93bcb494a794a41e6f4744b" +checksum = "322c53fd76a18698f1c27381d58091de3a043d356aa5bd0d510608b565f469a0" dependencies = [ "async-global-executor", "futures", "log", "netlink-packet-route", "netlink-proto", - "nix 0.22.3", + "nix 0.24.2", "thiserror", ] @@ -9408,15 +9141,6 @@ dependencies = [ "rustc_version 0.2.3", ] -[[package]] -name = "salsa20" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c0fbb5f676da676c260ba276a8f43a8dc67cf02d1438423aeb1c677a7212686" -dependencies = [ - "cipher", -] - [[package]] name = "same-file" version = "1.0.6" @@ -9429,7 +9153,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "log", "sp-core", @@ -9440,7 +9164,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "futures", @@ -9449,8 +9173,8 @@ dependencies = [ "libp2p", "log", "parity-scale-codec", - "prost 0.11.0", - "prost-build 0.11.1", + "prost", + "prost-build", "rand 0.7.3", "sc-client-api", "sc-network-common", @@ -9467,7 +9191,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "futures-timer", @@ -9490,7 +9214,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9506,7 +9230,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9523,7 +9247,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9534,11 +9258,11 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "chrono", - "clap", + "clap 4.0.11", "fdlimit", "futures", "libp2p", @@ -9574,7 +9298,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "fnv", "futures", @@ -9602,7 +9326,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "hash-db", "kvdb", @@ -9627,7 +9351,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "futures", @@ -9651,7 +9375,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "futures", @@ -9680,7 +9404,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "fork-tree", @@ -9722,7 +9446,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "jsonrpsee", @@ -9744,7 +9468,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9757,7 +9481,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "futures", @@ -9781,7 +9505,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9808,7 +9532,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "environmental", "parity-scale-codec", @@ -9824,7 +9548,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "log", "parity-scale-codec", @@ -9839,7 +9563,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9859,7 +9583,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "ahash", "array-bytes", @@ -9900,7 +9624,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "finality-grandpa", "futures", @@ -9921,7 +9645,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "ansi_term", "futures", @@ -9938,7 +9662,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "async-trait", @@ -9953,7 +9677,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "async-trait", @@ -9975,7 +9699,7 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "pin-project", - "prost 0.11.0", + "prost", "rand 0.7.3", "sc-block-builder", "sc-client-api", @@ -10000,14 +9724,14 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "cid", "futures", "libp2p", "log", - "prost 0.11.0", - "prost-build 0.11.1", + "prost", + "prost-build", "sc-client-api", "sc-network-common", "sp-blockchain", @@ -10020,7 +9744,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "bitflags", @@ -10030,7 +9754,7 @@ dependencies = [ "libp2p", "linked_hash_set", "parity-scale-codec", - "prost-build 0.11.1", + "prost-build", "sc-consensus", "sc-peerset", "serde", @@ -10046,7 +9770,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "ahash", "futures", @@ -10064,15 +9788,15 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "futures", "libp2p", "log", "parity-scale-codec", - "prost 0.11.0", - "prost-build 0.11.1", + "prost", + "prost-build", "sc-client-api", "sc-network-common", "sc-peerset", @@ -10085,7 +9809,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "fork-tree", @@ -10095,8 +9819,8 @@ dependencies = [ "lru 0.7.7", "mockall", "parity-scale-codec", - "prost 0.11.0", - "prost-build 0.11.1", + "prost", + "prost-build", "sc-client-api", "sc-consensus", "sc-network-common", @@ -10115,7 +9839,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "futures", @@ -10134,7 +9858,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "bytes", @@ -10164,7 +9888,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "libp2p", @@ -10177,7 +9901,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10186,7 +9910,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "hash-db", @@ -10216,7 +9940,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "jsonrpsee", @@ -10239,7 +9963,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "jsonrpsee", @@ -10252,7 +9976,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "hex", @@ -10271,7 +9995,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "directories", @@ -10342,7 +10066,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "log", "parity-scale-codec", @@ -10356,7 +10080,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10375,7 +10099,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "libc", @@ -10394,7 +10118,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "chrono", "futures", @@ -10412,7 +10136,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "ansi_term", "atty", @@ -10443,7 +10167,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10454,7 +10178,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "futures", @@ -10481,7 +10205,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "futures", @@ -10495,7 +10219,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "futures-timer", @@ -10801,18 +10525,6 @@ dependencies = [ "digest 0.10.3", ] -[[package]] -name = "sha3" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809" -dependencies = [ - "block-buffer 0.9.0", - "digest 0.9.0", - "keccak", - "opaque-debug 0.3.0", -] - [[package]] name = "sha3" version = "0.10.0" @@ -10925,7 +10637,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "enumn", "parity-scale-codec", @@ -11001,7 +10713,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "hash-db", "log", @@ -11019,7 +10731,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "blake2", "proc-macro-crate", @@ -11031,7 +10743,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11044,7 +10756,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "integer-sqrt", "num-traits", @@ -11059,7 +10771,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11072,7 +10784,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "parity-scale-codec", @@ -11084,7 +10796,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "sp-api", @@ -11096,7 +10808,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "log", @@ -11114,7 +10826,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "futures", @@ -11133,7 +10845,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "parity-scale-codec", @@ -11151,7 +10863,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "merlin", @@ -11174,7 +10886,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11188,7 +10900,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11201,7 +10913,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "base58", @@ -11247,13 +10959,13 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "blake2", "byteorder", "digest 0.10.3", "sha2 0.10.2", - "sha3 0.10.0", + "sha3", "sp-std", "twox-hash", ] @@ -11261,7 +10973,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "proc-macro2", "quote", @@ -11272,7 +10984,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11281,7 +10993,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "proc-macro2", "quote", @@ -11291,7 +11003,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "environmental", "parity-scale-codec", @@ -11302,7 +11014,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "finality-grandpa", "log", @@ -11320,7 +11032,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11334,7 +11046,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "bytes", "futures", @@ -11360,7 +11072,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "lazy_static", "sp-core", @@ -11371,7 +11083,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "futures", @@ -11388,7 +11100,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "thiserror", "zstd", @@ -11397,7 +11109,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "log", "parity-scale-codec", @@ -11413,7 +11125,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11427,7 +11139,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "sp-api", "sp-core", @@ -11437,7 +11149,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "backtrace", "lazy_static", @@ -11447,7 +11159,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "rustc-hash", "serde", @@ -11457,7 +11169,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "either", "hash256-std-hasher", @@ -11480,7 +11192,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11498,7 +11210,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "Inflector", "proc-macro-crate", @@ -11510,7 +11222,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "log", "parity-scale-codec", @@ -11524,7 +11236,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "serde", "serde_json", @@ -11533,7 +11245,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11547,7 +11259,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11558,7 +11270,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "hash-db", "log", @@ -11580,12 +11292,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11598,7 +11310,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "log", "sp-core", @@ -11611,7 +11323,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "futures-timer", @@ -11627,7 +11339,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "sp-std", @@ -11639,7 +11351,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "sp-api", "sp-runtime", @@ -11648,7 +11360,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "log", @@ -11664,7 +11376,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "ahash", "hash-db", @@ -11687,7 +11399,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11704,7 +11416,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11715,7 +11427,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "impl-trait-for-tuples", "log", @@ -11728,7 +11440,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -12024,7 +11736,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "platforms", ] @@ -12032,7 +11744,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -12053,7 +11765,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures-util", "hyper", @@ -12066,7 +11778,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "jsonrpsee", "log", @@ -12087,7 +11799,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "async-trait", @@ -12113,7 +11825,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "substrate-test-utils-derive", @@ -12123,7 +11835,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12134,7 +11846,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "ansi_term", "build-helper", @@ -12242,7 +11954,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "frame-support", "polkadot-primitives", @@ -12522,7 +12234,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12533,7 +12245,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12610,9 +12322,9 @@ dependencies = [ [[package]] name = "trust-dns-proto" -version = "0.21.2" +version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c31f240f59877c3d4bb3b3ea0ec5a6a0cff07323580ff8c7a605cd7d08b255d" +checksum = "4f7f83d1e4a0e4358ac54c5c3681e5d7da5efc5a7a632c90bb6d6669ddd9bc26" dependencies = [ "async-trait", "cfg-if 1.0.0", @@ -12624,30 +12336,30 @@ dependencies = [ "idna 0.2.3", "ipnet", "lazy_static", - "log", "rand 0.8.5", "smallvec", "thiserror", "tinyvec", + "tracing", "url", ] [[package]] name = "trust-dns-resolver" -version = "0.21.2" +version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4ba72c2ea84515690c9fcef4c6c660bb9df3036ed1051686de84605b74fd558" +checksum = "aff21aa4dcefb0a1afbfac26deb0adc93888c7d295fb63ab273ef276ba2b7cfe" dependencies = [ "cfg-if 1.0.0", "futures-util", "ipconfig", "lazy_static", - "log", "lru-cache", "parking_lot 0.12.1", "resolv-conf", "smallvec", "thiserror", + "tracing", "trust-dns-proto", ] @@ -12660,9 +12372,9 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ - "clap", + "clap 4.0.11", "frame-try-runtime", "jsonrpsee", "log", @@ -13249,7 +12961,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "beefy-primitives", "bitvec", @@ -13339,7 +13051,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "frame-support", "polkadot-primitives", @@ -13463,15 +13175,15 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windows" -version = "0.29.0" +version = "0.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aac7fef12f4b59cd0a29339406cc9203ab44e440ddff6b3f5a41455349fa9cf3" +checksum = "45296b64204227616fdbf2614cefa4c236b98ee64dfaaaa435207ed99fe7829f" dependencies = [ - "windows_aarch64_msvc 0.29.0", - "windows_i686_gnu 0.29.0", - "windows_i686_msvc 0.29.0", - "windows_x86_64_gnu 0.29.0", - "windows_x86_64_msvc 0.29.0", + "windows_aarch64_msvc 0.34.0", + "windows_i686_gnu 0.34.0", + "windows_i686_msvc 0.34.0", + "windows_x86_64_gnu 0.34.0", + "windows_x86_64_msvc 0.34.0", ] [[package]] @@ -13500,90 +13212,90 @@ dependencies = [ "windows_x86_64_msvc 0.36.1", ] -[[package]] -name = "windows_aarch64_msvc" -version = "0.29.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3d027175d00b01e0cbeb97d6ab6ebe03b12330a35786cbaca5252b1c4bf5d9b" - [[package]] name = "windows_aarch64_msvc" version = "0.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d8e92753b1c443191654ec532f14c199742964a061be25d77d7a96f09db20bf5" +[[package]] +name = "windows_aarch64_msvc" +version = "0.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17cffbe740121affb56fad0fc0e421804adf0ae00891205213b5cecd30db881d" + [[package]] name = "windows_aarch64_msvc" version = "0.36.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" -[[package]] -name = "windows_i686_gnu" -version = "0.29.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8793f59f7b8e8b01eda1a652b2697d87b93097198ae85f823b969ca5b89bba58" - [[package]] name = "windows_i686_gnu" version = "0.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a711c68811799e017b6038e0922cb27a5e2f43a2ddb609fe0b6f3eeda9de615" +[[package]] +name = "windows_i686_gnu" +version = "0.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2564fde759adb79129d9b4f54be42b32c89970c18ebf93124ca8870a498688ed" + [[package]] name = "windows_i686_gnu" version = "0.36.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" -[[package]] -name = "windows_i686_msvc" -version = "0.29.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8602f6c418b67024be2996c512f5f995de3ba417f4c75af68401ab8756796ae4" - [[package]] name = "windows_i686_msvc" version = "0.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "146c11bb1a02615db74680b32a68e2d61f553cc24c4eb5b4ca10311740e44172" +[[package]] +name = "windows_i686_msvc" +version = "0.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9cd9d32ba70453522332c14d38814bceeb747d80b3958676007acadd7e166956" + [[package]] name = "windows_i686_msvc" version = "0.36.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" -[[package]] -name = "windows_x86_64_gnu" -version = "0.29.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3d615f419543e0bd7d2b3323af0d86ff19cbc4f816e6453f36a2c2ce889c354" - [[package]] name = "windows_x86_64_gnu" version = "0.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c912b12f7454c6620635bbff3450962753834be2a594819bd5e945af18ec64bc" +[[package]] +name = "windows_x86_64_gnu" +version = "0.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfce6deae227ee8d356d19effc141a509cc503dfd1f850622ec4b0f84428e1f4" + [[package]] name = "windows_x86_64_gnu" version = "0.36.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" -[[package]] -name = "windows_x86_64_msvc" -version = "0.29.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11d95421d9ed3672c280884da53201a5c46b7b2765ca6faf34b0d71cf34a3561" - [[package]] name = "windows_x86_64_msvc" version = "0.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "504a2476202769977a040c6364301a3f65d0cc9e3fb08600b2bda150a0488316" +[[package]] +name = "windows_x86_64_msvc" +version = "0.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d19538ccc21819d01deaf88d6a17eae6596a12e9aafdbb97916fb49896d89de9" + [[package]] name = "windows_x86_64_msvc" version = "0.36.1" @@ -13622,7 +13334,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13636,7 +13348,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "frame-support", "frame-system", @@ -13656,7 +13368,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "frame-benchmarking", "frame-support", @@ -13674,7 +13386,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "Inflector", "proc-macro2", diff --git a/client/cli/Cargo.toml b/client/cli/Cargo.toml index 4f20e564dd..968d19e800 100644 --- a/client/cli/Cargo.toml +++ b/client/cli/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -clap = { version = "3.2.22", features = ["derive", "deprecated"] } +clap = { version = "4.0.9", features = ["derive"] } codec = { package = "parity-scale-codec", version = "3.0.0" } url = "2.3.1" diff --git a/client/cli/src/lib.rs b/client/cli/src/lib.rs index 6afe0c53b6..ae7943f99a 100644 --- a/client/cli/src/lib.rs +++ b/client/cli/src/lib.rs @@ -40,17 +40,18 @@ use url::Url; /// The `purge-chain` command used to remove the whole chain: the parachain and the relay chain. #[derive(Debug, clap::Parser)] +#[group(skip)] pub struct PurgeChainCmd { /// The base struct of the purge-chain command. - #[clap(flatten)] + #[command(flatten)] pub base: sc_cli::PurgeChainCmd, /// Only delete the para chain database - #[clap(long, aliases = &["para"])] + #[arg(long, aliases = &["para"])] pub parachain: bool, /// Only delete the relay chain database - #[clap(long, aliases = &["relay"])] + #[arg(long, aliases = &["relay"])] pub relaychain: bool, } @@ -131,15 +132,15 @@ impl sc_cli::CliConfiguration for PurgeChainCmd { #[derive(Debug, clap::Parser)] pub struct ExportGenesisStateCommand { /// Output file name or stdout if unspecified. - #[clap(action)] + #[arg()] pub output: Option, /// Write output in binary. Default is to write in hex. - #[clap(short, long)] + #[arg(short, long)] pub raw: bool, #[allow(missing_docs)] - #[clap(flatten)] + #[command(flatten)] pub shared_params: sc_cli::SharedParams, } @@ -214,15 +215,15 @@ impl sc_cli::CliConfiguration for ExportGenesisStateCommand { #[derive(Debug, clap::Parser)] pub struct ExportGenesisWasmCommand { /// Output file name or stdout if unspecified. - #[clap(action)] + #[arg()] pub output: Option, /// Write output in binary. Default is to write in hex. - #[clap(short, long)] + #[arg(short, long)] pub raw: bool, #[allow(missing_docs)] - #[clap(flatten)] + #[command(flatten)] pub shared_params: sc_cli::SharedParams, } @@ -277,19 +278,20 @@ fn validate_relay_chain_url(arg: &str) -> Result { /// The `run` command used to run a node. #[derive(Debug, clap::Parser)] +#[group(skip)] pub struct RunCmd { /// The cumulus RunCmd inherents from sc_cli's - #[clap(flatten)] + #[command(flatten)] pub base: sc_cli::RunCmd, /// Run node as collator. /// /// Note that this is the same as running with `--validator`. - #[clap(long, conflicts_with = "validator")] + #[arg(long, conflicts_with = "validator")] pub collator: bool, /// EXPERIMENTAL: Specify an URL to a relay chain full node to communicate with. - #[clap( + #[arg( long, value_parser = validate_relay_chain_url )] diff --git a/parachain-template/node/Cargo.toml b/parachain-template/node/Cargo.toml index 6db0087fff..6c4fb54571 100644 --- a/parachain-template/node/Cargo.toml +++ b/parachain-template/node/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" build = "build.rs" [dependencies] -clap = { version = "3.2.22", features = ["derive"] } +clap = { version = "4.0.9", features = ["derive"] } log = "0.4.17" codec = { package = "parity-scale-codec", version = "3.0.0" } serde = { version = "1.0.145", features = ["derive"] } diff --git a/parachain-template/node/src/cli.rs b/parachain-template/node/src/cli.rs index 949ce489d6..99bb0a96bc 100644 --- a/parachain-template/node/src/cli.rs +++ b/parachain-template/node/src/cli.rs @@ -32,7 +32,7 @@ pub enum Subcommand { /// Sub-commands concerned with benchmarking. /// The pallet benchmarking moved to the `pallet` sub-command. - #[clap(subcommand)] + #[command(subcommand)] Benchmark(frame_benchmarking_cli::BenchmarkCmd), /// Try some testing command against a specified runtime state. @@ -40,16 +40,16 @@ pub enum Subcommand { } #[derive(Debug, clap::Parser)] -#[clap( +#[command( propagate_version = true, args_conflicts_with_subcommands = true, subcommand_negates_reqs = true )] pub struct Cli { - #[clap(subcommand)] + #[command(subcommand)] pub subcommand: Option, - #[clap(flatten)] + #[command(flatten)] pub run: cumulus_client_cli::RunCmd, /// Disable automatic hardware benchmarks. @@ -59,11 +59,11 @@ pub struct Cli { /// /// The results are then printed out in the logs, and also sent as part of /// telemetry, if telemetry is enabled. - #[clap(long)] + #[arg(long)] pub no_hardware_benchmarks: bool, /// Relay chain arguments - #[clap(raw = true)] + #[arg(raw = true)] pub relay_chain_args: Vec, } diff --git a/polkadot-parachain/Cargo.toml b/polkadot-parachain/Cargo.toml index a871294aad..bb06fa08f9 100644 --- a/polkadot-parachain/Cargo.toml +++ b/polkadot-parachain/Cargo.toml @@ -8,7 +8,7 @@ description = "Runs a polkadot parachain node which could be a collator." [dependencies] async-trait = "0.1.57" -clap = { version = "3.2.22", features = ["derive", "deprecated"] } +clap = { version = "4.0.9", features = ["derive"] } codec = { package = "parity-scale-codec", version = "3.0.0" } futures = "0.3.24" hex-literal = "0.3.4" diff --git a/polkadot-parachain/src/cli.rs b/polkadot-parachain/src/cli.rs index 36a4cfd562..b5df0b8364 100644 --- a/polkadot-parachain/src/cli.rs +++ b/polkadot-parachain/src/cli.rs @@ -20,7 +20,7 @@ use std::path::PathBuf; #[derive(Debug, clap::Subcommand)] pub enum Subcommand { /// Key management CLI utilities - #[clap(subcommand)] + #[command(subcommand)] Key(sc_cli::KeySubcommand), /// Build a chain specification. @@ -52,7 +52,7 @@ pub enum Subcommand { /// Sub-commands concerned with benchmarking. /// The pallet benchmarking moved to the `pallet` sub-command. - #[clap(subcommand)] + #[command(subcommand)] Benchmark(frame_benchmarking_cli::BenchmarkCmd), /// Try some testing command against a specified runtime state. @@ -60,16 +60,16 @@ pub enum Subcommand { } #[derive(Debug, clap::Parser)] -#[clap( +#[command( propagate_version = true, args_conflicts_with_subcommands = true, subcommand_negates_reqs = true )] pub struct Cli { - #[clap(subcommand)] + #[command(subcommand)] pub subcommand: Option, - #[clap(flatten)] + #[command(flatten)] pub run: cumulus_client_cli::RunCmd, /// Disable automatic hardware benchmarks. @@ -79,11 +79,11 @@ pub struct Cli { /// /// The results are then printed out in the logs, and also sent as part of /// telemetry, if telemetry is enabled. - #[clap(long)] + #[arg(long)] pub no_hardware_benchmarks: bool, /// Relay chain arguments - #[clap(raw = true)] + #[arg(raw = true)] pub relaychain_args: Vec, } diff --git a/test/service/Cargo.toml b/test/service/Cargo.toml index 1d4648d378..2e9c07f771 100644 --- a/test/service/Cargo.toml +++ b/test/service/Cargo.toml @@ -10,7 +10,7 @@ path = "src/main.rs" [dependencies] async-trait = "0.1.57" -clap = { version = "3.2.22", features = ["derive", "deprecated"] } +clap = { version = "4.0.9", features = ["derive"] } codec = { package = "parity-scale-codec", version = "3.0.0" } criterion = { version = "0.4.0", features = [ "async_tokio" ] } jsonrpsee = { version = "0.15.1", features = ["server"] } diff --git a/test/service/src/cli.rs b/test/service/src/cli.rs index 4cf4b92599..31829a66d2 100644 --- a/test/service/src/cli.rs +++ b/test/service/src/cli.rs @@ -24,30 +24,30 @@ use sc_cli::{ use sc_service::BasePath; #[derive(Debug, clap::Parser)] -#[clap( +#[command( version, propagate_version = true, args_conflicts_with_subcommands = true, subcommand_negates_reqs = true )] pub struct TestCollatorCli { - #[clap(subcommand)] + #[command(subcommand)] pub subcommand: Option, - #[clap(flatten)] + #[command(flatten)] pub run: cumulus_client_cli::RunCmd, - #[clap(default_value_t = 2000u32)] + #[arg(default_value_t = 2000u32)] pub parachain_id: u32, /// Relay chain arguments - #[clap(raw = true)] + #[arg(raw = true)] pub relaychain_args: Vec, - #[clap(long)] + #[arg(long)] pub use_null_consensus: bool, - #[clap(long)] + #[arg(long)] pub disable_block_announcements: bool, } @@ -64,11 +64,12 @@ pub enum Subcommand { } #[derive(Debug, clap::Parser)] +#[group(skip)] pub struct ExportGenesisStateCommand { - #[clap(default_value_t = 2000u32)] + #[arg(default_value_t = 2000u32)] pub parachain_id: u32, - #[clap(flatten)] + #[command(flatten)] pub base: cumulus_client_cli::ExportGenesisStateCommand, } @@ -80,11 +81,12 @@ impl CliConfiguration for ExportGenesisStateCommand { /// Command for exporting the genesis wasm file. #[derive(Debug, clap::Parser)] +#[group(skip)] pub struct ExportGenesisWasmCommand { - #[clap(default_value_t = 2000u32)] + #[arg(default_value_t = 2000u32)] pub parachain_id: u32, - #[clap(flatten)] + #[command(flatten)] pub base: cumulus_client_cli::ExportGenesisWasmCommand, } From 5e63a1dce7d7016fb78e1e53e3388a386ba64922 Mon Sep 17 00:00:00 2001 From: Michal Kucharczyk <1728078+michalkucharczyk@users.noreply.github.com> Date: Tue, 18 Oct 2022 16:34:14 +0200 Subject: [PATCH 26/48] BlockId removal: refactor: StorageProvider (#1770) * BlockId removal: refactor: StorageProvider It changes the arguments of `Backend::StorageProvider` trait from: block: `BlockId` to: hash: `&Block::Hash` * update lockfile for {"polkadot", "substrate"} Co-authored-by: parity-processbot <> --- Cargo.lock | 505 +++++++++++----------- primitives/parachain-inherent/src/mock.rs | 5 +- 2 files changed, 255 insertions(+), 255 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dacb281d13..47ff65325d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "beefy-primitives", "sp-api", @@ -536,10 +536,11 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "scale-info", + "serde", "sp-api", "sp-application-crypto", "sp-core", @@ -2801,7 +2802,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", ] @@ -2824,7 +2825,7 @@ checksum = "85dcb89d2b10c5f6133de2efd8c11959ce9dbb46a2f7a4cab208c4eeda6ce1ab" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -2847,7 +2848,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "Inflector", "array-bytes", @@ -2898,7 +2899,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2909,7 +2910,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2925,7 +2926,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -2954,7 +2955,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "bitflags", "frame-metadata", @@ -2986,7 +2987,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "Inflector", "cfg-expr", @@ -3000,7 +3001,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3012,7 +3013,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "proc-macro2", "quote", @@ -3022,7 +3023,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "log", @@ -3040,7 +3041,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -3055,7 +3056,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "sp-api", @@ -3064,7 +3065,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "parity-scale-codec", @@ -3925,7 +3926,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "beefy-primitives", "bitvec", @@ -4023,7 +4024,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "frame-support", "polkadot-primitives", @@ -5247,7 +5248,7 @@ checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64" [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5268,7 +5269,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -5285,7 +5286,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5299,7 +5300,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -5315,7 +5316,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -5331,7 +5332,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -5346,7 +5347,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5370,7 +5371,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5390,7 +5391,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5405,7 +5406,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "beefy-primitives", "frame-support", @@ -5421,7 +5422,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5444,7 +5445,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5462,7 +5463,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5506,7 +5507,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5523,7 +5524,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "bitflags", "frame-benchmarking", @@ -5552,7 +5553,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "bitflags", "parity-scale-codec", @@ -5564,7 +5565,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "proc-macro2", "quote", @@ -5574,7 +5575,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5591,7 +5592,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5609,7 +5610,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5633,7 +5634,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5646,7 +5647,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5664,7 +5665,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5685,7 +5686,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5700,7 +5701,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5723,7 +5724,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5739,7 +5740,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5759,7 +5760,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5776,7 +5777,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5793,7 +5794,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5811,7 +5812,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5826,7 +5827,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5842,7 +5843,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -5859,7 +5860,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5879,7 +5880,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "sp-api", @@ -5889,7 +5890,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -5906,7 +5907,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5929,7 +5930,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5946,7 +5947,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5961,7 +5962,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -5975,7 +5976,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -5993,7 +5994,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6008,7 +6009,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6026,7 +6027,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6042,7 +6043,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -6063,7 +6064,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6079,7 +6080,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -6093,7 +6094,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6116,7 +6117,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6127,7 +6128,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "log", "sp-arithmetic", @@ -6136,7 +6137,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -6165,7 +6166,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6183,7 +6184,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6202,7 +6203,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-support", "frame-system", @@ -6218,7 +6219,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6233,7 +6234,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6244,7 +6245,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6261,7 +6262,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6276,7 +6277,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6292,7 +6293,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6307,7 +6308,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-benchmarking", "frame-support", @@ -6322,7 +6323,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "frame-support", "frame-system", @@ -6340,7 +6341,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "frame-benchmarking", "frame-support", @@ -6894,7 +6895,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -6909,7 +6910,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -6923,7 +6924,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "derive_more", "fatality", @@ -6946,7 +6947,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "fatality", "futures", @@ -6967,7 +6968,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "clap 4.0.11", "frame-benchmarking-cli", @@ -6993,7 +6994,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7034,7 +7035,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "always-assert", "bitvec", @@ -7056,7 +7057,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7069,7 +7070,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "derive_more", "fatality", @@ -7094,7 +7095,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7108,7 +7109,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "futures", "futures-timer", @@ -7128,7 +7129,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "always-assert", "async-trait", @@ -7152,7 +7153,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "futures", "parity-scale-codec", @@ -7170,7 +7171,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "bitvec", "derive_more", @@ -7199,7 +7200,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "bitvec", "futures", @@ -7219,7 +7220,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "bitvec", "fatality", @@ -7238,7 +7239,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7253,7 +7254,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "async-trait", "futures", @@ -7271,7 +7272,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7286,7 +7287,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "futures", "futures-timer", @@ -7303,7 +7304,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "fatality", "futures", @@ -7322,7 +7323,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "async-trait", "futures", @@ -7339,7 +7340,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "bitvec", "fatality", @@ -7357,7 +7358,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "always-assert", "assert_matches", @@ -7389,7 +7390,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "futures", "polkadot-node-primitives", @@ -7405,7 +7406,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "futures", "memory-lru", @@ -7421,7 +7422,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "async-std", "lazy_static", @@ -7439,7 +7440,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "bs58", "futures", @@ -7458,7 +7459,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "async-trait", "derive_more", @@ -7481,7 +7482,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "bounded-vec", "futures", @@ -7503,7 +7504,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7513,7 +7514,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "async-trait", "futures", @@ -7531,7 +7532,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "async-trait", "derive_more", @@ -7554,7 +7555,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "async-trait", "derive_more", @@ -7587,7 +7588,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "async-trait", "futures", @@ -7610,7 +7611,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "derive_more", "frame-support", @@ -7708,7 +7709,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7723,7 +7724,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "bitvec", "frame-system", @@ -7753,7 +7754,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7785,7 +7786,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "beefy-primitives", "bitvec", @@ -7874,7 +7875,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "beefy-primitives", "bitvec", @@ -7921,7 +7922,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "frame-support", "polkadot-primitives", @@ -7933,7 +7934,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "bs58", "parity-scale-codec", @@ -7945,7 +7946,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "bitflags", "bitvec", @@ -7988,7 +7989,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "async-trait", "beefy-gadget", @@ -8093,7 +8094,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8114,7 +8115,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8124,7 +8125,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8149,7 +8150,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "beefy-primitives", "bitvec", @@ -8210,7 +8211,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "frame-benchmarking", "frame-system", @@ -8789,7 +8790,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -8908,7 +8909,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -8992,7 +8993,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "frame-support", "polkadot-primitives", @@ -9153,7 +9154,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "log", "sp-core", @@ -9164,7 +9165,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "futures", @@ -9191,7 +9192,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "futures-timer", @@ -9214,7 +9215,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9230,7 +9231,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9247,7 +9248,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9258,7 +9259,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "chrono", @@ -9298,7 +9299,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "fnv", "futures", @@ -9326,7 +9327,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "hash-db", "kvdb", @@ -9351,7 +9352,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "futures", @@ -9375,7 +9376,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "futures", @@ -9404,7 +9405,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "fork-tree", @@ -9446,7 +9447,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "jsonrpsee", @@ -9468,7 +9469,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9481,7 +9482,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "futures", @@ -9505,7 +9506,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9532,7 +9533,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "environmental", "parity-scale-codec", @@ -9548,7 +9549,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "log", "parity-scale-codec", @@ -9563,7 +9564,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9583,7 +9584,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "ahash", "array-bytes", @@ -9624,7 +9625,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "finality-grandpa", "futures", @@ -9645,7 +9646,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "ansi_term", "futures", @@ -9662,7 +9663,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "async-trait", @@ -9677,7 +9678,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "async-trait", @@ -9724,7 +9725,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "cid", "futures", @@ -9744,7 +9745,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "bitflags", @@ -9770,7 +9771,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "ahash", "futures", @@ -9788,7 +9789,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "futures", @@ -9809,7 +9810,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "fork-tree", @@ -9839,7 +9840,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "futures", @@ -9858,7 +9859,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "bytes", @@ -9888,7 +9889,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "libp2p", @@ -9901,7 +9902,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9910,7 +9911,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "hash-db", @@ -9940,7 +9941,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "jsonrpsee", @@ -9963,7 +9964,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "jsonrpsee", @@ -9976,7 +9977,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "hex", @@ -9995,7 +9996,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "directories", @@ -10066,7 +10067,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "log", "parity-scale-codec", @@ -10080,7 +10081,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10099,7 +10100,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "libc", @@ -10118,7 +10119,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "chrono", "futures", @@ -10136,7 +10137,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "ansi_term", "atty", @@ -10167,7 +10168,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10178,7 +10179,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "futures", @@ -10205,7 +10206,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "futures", @@ -10219,7 +10220,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "futures-timer", @@ -10637,7 +10638,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "enumn", "parity-scale-codec", @@ -10713,7 +10714,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "hash-db", "log", @@ -10731,7 +10732,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "blake2", "proc-macro-crate", @@ -10743,7 +10744,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "scale-info", @@ -10756,7 +10757,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "integer-sqrt", "num-traits", @@ -10771,7 +10772,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "scale-info", @@ -10784,7 +10785,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "parity-scale-codec", @@ -10796,7 +10797,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "sp-api", @@ -10808,7 +10809,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "log", @@ -10826,7 +10827,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "futures", @@ -10845,7 +10846,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "parity-scale-codec", @@ -10863,7 +10864,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "merlin", @@ -10886,7 +10887,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "scale-info", @@ -10900,7 +10901,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "scale-info", @@ -10913,7 +10914,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "base58", @@ -10959,7 +10960,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "blake2", "byteorder", @@ -10973,7 +10974,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "proc-macro2", "quote", @@ -10984,7 +10985,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10993,7 +10994,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "proc-macro2", "quote", @@ -11003,7 +11004,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "environmental", "parity-scale-codec", @@ -11014,7 +11015,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "finality-grandpa", "log", @@ -11032,7 +11033,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11046,7 +11047,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "bytes", "futures", @@ -11072,7 +11073,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "lazy_static", "sp-core", @@ -11083,7 +11084,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "futures", @@ -11100,7 +11101,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "thiserror", "zstd", @@ -11109,7 +11110,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "log", "parity-scale-codec", @@ -11125,7 +11126,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "scale-info", @@ -11139,7 +11140,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "sp-api", "sp-core", @@ -11149,7 +11150,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "backtrace", "lazy_static", @@ -11159,7 +11160,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "rustc-hash", "serde", @@ -11169,7 +11170,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "either", "hash256-std-hasher", @@ -11192,7 +11193,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11210,7 +11211,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "Inflector", "proc-macro-crate", @@ -11222,7 +11223,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "log", "parity-scale-codec", @@ -11236,7 +11237,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "serde", "serde_json", @@ -11245,7 +11246,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "scale-info", @@ -11259,7 +11260,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "scale-info", @@ -11270,7 +11271,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "hash-db", "log", @@ -11292,12 +11293,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11310,7 +11311,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "log", "sp-core", @@ -11323,7 +11324,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "futures-timer", @@ -11339,7 +11340,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "sp-std", @@ -11351,7 +11352,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "sp-api", "sp-runtime", @@ -11360,7 +11361,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "async-trait", "log", @@ -11376,7 +11377,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "ahash", "hash-db", @@ -11399,7 +11400,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11416,7 +11417,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11427,7 +11428,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "impl-trait-for-tuples", "log", @@ -11440,7 +11441,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11736,7 +11737,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "platforms", ] @@ -11744,7 +11745,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11765,7 +11766,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures-util", "hyper", @@ -11778,7 +11779,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "jsonrpsee", "log", @@ -11799,7 +11800,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "array-bytes", "async-trait", @@ -11825,7 +11826,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11835,7 +11836,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11846,7 +11847,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "ansi_term", "build-helper", @@ -11954,7 +11955,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "frame-support", "polkadot-primitives", @@ -12234,7 +12235,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12245,7 +12246,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12372,7 +12373,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "clap 4.0.11", "frame-try-runtime", @@ -12961,7 +12962,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "beefy-primitives", "bitvec", @@ -13051,7 +13052,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "frame-support", "polkadot-primitives", @@ -13334,7 +13335,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13348,7 +13349,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "frame-support", "frame-system", @@ -13368,7 +13369,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "frame-benchmarking", "frame-support", @@ -13386,7 +13387,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" +source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ "Inflector", "proc-macro2", diff --git a/primitives/parachain-inherent/src/mock.rs b/primitives/parachain-inherent/src/mock.rs index e4ca16414c..1793f6d4e8 100644 --- a/primitives/parachain-inherent/src/mock.rs +++ b/primitives/parachain-inherent/src/mock.rs @@ -20,7 +20,6 @@ use cumulus_primitives_core::{ relay_chain, InboundDownwardMessage, InboundHrmpMessage, ParaId, PersistedValidationData, }; use sc_client_api::{Backend, StorageProvider}; -use sp_api::BlockId; use sp_core::twox_128; use sp_inherents::{InherentData, InherentDataProvider}; use sp_runtime::traits::Block; @@ -116,7 +115,7 @@ impl MockXcmConfig { ) -> Self { let starting_dmq_mqc_head = client .storage( - &BlockId::Hash(parent_block), + &parent_block, &sp_storage::StorageKey( [twox_128(¶chain_system_name.0), twox_128(b"LastDmqMqcHead")] .concat() @@ -131,7 +130,7 @@ impl MockXcmConfig { let starting_hrmp_mqc_heads = client .storage( - &BlockId::Hash(parent_block), + &parent_block, &sp_storage::StorageKey( [twox_128(¶chain_system_name.0), twox_128(b"LastHrmpMqcHeads")] .concat() From 18c01ee3d6c1f66d5cc951dbeecbccae195ba2f4 Mon Sep 17 00:00:00 2001 From: Davide Galassi Date: Wed, 19 Oct 2022 09:58:29 +0200 Subject: [PATCH 27/48] Reduce parachain template cognitive complexity (#1777) * Removed some not required generics * Type aliases for some verbose types --- parachain-template/node/src/command.rs | 27 +-- parachain-template/node/src/service.rs | 302 ++++++++----------------- polkadot-parachain/src/service.rs | 224 ++++++------------ 3 files changed, 167 insertions(+), 386 deletions(-) diff --git a/parachain-template/node/src/command.rs b/parachain-template/node/src/command.rs index ee497b413f..837cd15abf 100644 --- a/parachain-template/node/src/command.rs +++ b/parachain-template/node/src/command.rs @@ -5,7 +5,7 @@ use cumulus_client_cli::generate_genesis_block; use cumulus_primitives_core::ParaId; use frame_benchmarking_cli::{BenchmarkCmd, SUBSTRATE_REFERENCE_HARDWARE}; use log::{info, warn}; -use parachain_template_runtime::{Block, RuntimeApi}; +use parachain_template_runtime::Block; use sc_cli::{ ChainSpec, CliConfiguration, DefaultConfigurationValues, ImportParams, KeystoreParams, NetworkParams, Result, RuntimeVersion, SharedParams, SubstrateCli, @@ -20,7 +20,7 @@ use sp_runtime::traits::{AccountIdConversion, Block as BlockT}; use crate::{ chain_spec, cli::{Cli, RelayChainCli, Subcommand}, - service::{new_partial, TemplateRuntimeExecutor}, + service::{new_partial, ParachainNativeExecutor}, }; fn load_spec(id: &str) -> std::result::Result, String> { @@ -116,14 +116,7 @@ macro_rules! construct_async_run { (|$components:ident, $cli:ident, $cmd:ident, $config:ident| $( $code:tt )* ) => {{ let runner = $cli.create_runner($cmd)?; runner.async_run(|$config| { - let $components = new_partial::< - RuntimeApi, - TemplateRuntimeExecutor, - _ - >( - &$config, - crate::service::parachain_build_import_queue, - )?; + let $components = new_partial(&$config)?; let task_manager = $components.task_manager; { $( $code )* }.map(|v| (v, task_manager)) }) @@ -204,17 +197,14 @@ pub fn run() -> Result<()> { match cmd { BenchmarkCmd::Pallet(cmd) => if cfg!(feature = "runtime-benchmarks") { - runner.sync_run(|config| cmd.run::(config)) + runner.sync_run(|config| cmd.run::(config)) } else { Err("Benchmarking wasn't enabled when building the node. \ You can enable it with `--features runtime-benchmarks`." .into()) }, BenchmarkCmd::Block(cmd) => runner.sync_run(|config| { - let partials = new_partial::( - &config, - crate::service::parachain_build_import_queue, - )?; + let partials = new_partial(&config)?; cmd.run(partials.client) }), #[cfg(not(feature = "runtime-benchmarks"))] @@ -227,10 +217,7 @@ pub fn run() -> Result<()> { .into()), #[cfg(feature = "runtime-benchmarks")] BenchmarkCmd::Storage(cmd) => runner.sync_run(|config| { - let partials = new_partial::( - &config, - crate::service::parachain_build_import_queue, - )?; + let partials = new_partial(&config)?; let db = partials.backend.expose_db(); let storage = partials.backend.expose_storage(); @@ -255,7 +242,7 @@ pub fn run() -> Result<()> { .map_err(|e| format!("Error: {:?}", e))?; runner.async_run(|config| { - Ok((cmd.run::(config), task_manager)) + Ok((cmd.run::(config), task_manager)) }) } else { Err("Try-runtime must be enabled by `--features try-runtime`.".into()) diff --git a/parachain-template/node/src/service.rs b/parachain-template/node/src/service.rs index 91d8d54244..0980bb2cf7 100644 --- a/parachain-template/node/src/service.rs +++ b/parachain-template/node/src/service.rs @@ -3,14 +3,9 @@ // std use std::{sync::Arc, time::Duration}; -// rpc -use jsonrpsee::RpcModule; - use cumulus_client_cli::CollatorOptions; // Local Runtime Types -use parachain_template_runtime::{ - opaque::Block, AccountId, Balance, Hash, Index as Nonce, RuntimeApi, -}; +use parachain_template_runtime::{opaque::Block, Hash, RuntimeApi}; // Cumulus Imports use cumulus_client_consensus_aura::{AuraConsensus, BuildAuraConsensusParams, SlotProportion}; @@ -30,17 +25,15 @@ use sc_network::NetworkService; use sc_network_common::service::NetworkBlock; use sc_service::{Configuration, PartialComponents, TFullBackend, TFullClient, TaskManager}; use sc_telemetry::{Telemetry, TelemetryHandle, TelemetryWorker, TelemetryWorkerHandle}; -use sp_api::ConstructRuntimeApi; use sp_keystore::SyncCryptoStorePtr; -use sp_runtime::traits::BlakeTwo256; use substrate_prometheus_endpoint::Registry; use polkadot_service::CollatorPair; -/// Native executor instance. -pub struct TemplateRuntimeExecutor; +/// Native executor type. +pub struct ParachainNativeExecutor; -impl sc_executor::NativeExecutionDispatch for TemplateRuntimeExecutor { +impl sc_executor::NativeExecutionDispatch for ParachainNativeExecutor { type ExtendHostFunctions = frame_benchmarking::benchmarking::HostFunctions; fn dispatch(method: &str, data: &[u8]) -> Option> { @@ -52,59 +45,29 @@ impl sc_executor::NativeExecutionDispatch for TemplateRuntimeExecutor { } } +type ParachainExecutor = NativeElseWasmExecutor; + +type ParachainClient = TFullClient; + +type ParachainBackend = TFullBackend; + /// Starts a `ServiceBuilder` for a full service. /// /// Use this macro if you don't actually need the full service, but just the builder in order to /// be able to perform chain operations. -#[allow(clippy::type_complexity)] -pub fn new_partial( +pub fn new_partial( config: &Configuration, - build_import_queue: BIQ, ) -> Result< PartialComponents< - TFullClient>, - TFullBackend, + ParachainClient, + ParachainBackend, (), - sc_consensus::DefaultImportQueue< - Block, - TFullClient>, - >, - sc_transaction_pool::FullPool< - Block, - TFullClient>, - >, + sc_consensus::DefaultImportQueue, + sc_transaction_pool::FullPool, (Option, Option), >, sc_service::Error, -> -where - RuntimeApi: ConstructRuntimeApi>> - + Send - + Sync - + 'static, - RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue - + sp_api::Metadata - + sp_session::SessionKeys - + sp_api::ApiExt< - Block, - StateBackend = sc_client_api::StateBackendFor, Block>, - > + sp_offchain::OffchainWorkerApi - + sp_block_builder::BlockBuilder, - sc_client_api::StateBackendFor, Block>: sp_api::StateBackend, - Executor: sc_executor::NativeExecutionDispatch + 'static, - BIQ: FnOnce( - Arc>>, - &Configuration, - Option, - &TaskManager, - ) -> Result< - sc_consensus::DefaultImportQueue< - Block, - TFullClient>, - >, - sc_service::Error, - >, -{ +> { let telemetry = config .telemetry_endpoints .clone() @@ -116,7 +79,7 @@ where }) .transpose()?; - let executor = sc_executor::NativeElseWasmExecutor::::new( + let executor = ParachainExecutor::new( config.wasm_method, config.default_heap_pages, config.max_runtime_instances, @@ -153,7 +116,7 @@ where &task_manager, )?; - let params = PartialComponents { + Ok(PartialComponents { backend, client, import_queue, @@ -162,9 +125,7 @@ where transaction_pool, select_chain: (), other: (telemetry, telemetry_worker_handle), - }; - - Ok(params) + }) } async fn build_relay_chain_interface( @@ -192,74 +153,16 @@ async fn build_relay_chain_interface( /// /// This is the actual implementation that is abstract over the executor and the runtime api. #[sc_tracing::logging::prefix_logs_with("Parachain")] -async fn start_node_impl( +async fn start_node_impl( parachain_config: Configuration, polkadot_config: Configuration, collator_options: CollatorOptions, id: ParaId, - _rpc_ext_builder: RB, - build_import_queue: BIQ, - build_consensus: BIC, hwbench: Option, -) -> sc_service::error::Result<( - TaskManager, - Arc>>, -)> -where - RuntimeApi: ConstructRuntimeApi>> - + Send - + Sync - + 'static, - RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue - + sp_api::Metadata - + sp_session::SessionKeys - + sp_api::ApiExt< - Block, - StateBackend = sc_client_api::StateBackendFor, Block>, - > + sp_offchain::OffchainWorkerApi - + sp_block_builder::BlockBuilder - + cumulus_primitives_core::CollectCollationInfo - + pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi - + substrate_frame_rpc_system::AccountNonceApi, - sc_client_api::StateBackendFor, Block>: sp_api::StateBackend, - Executor: sc_executor::NativeExecutionDispatch + 'static, - RB: Fn( - Arc>, - ) -> Result, sc_service::Error> - + Send - + 'static, - BIQ: FnOnce( - Arc>>, - &Configuration, - Option, - &TaskManager, - ) -> Result< - sc_consensus::DefaultImportQueue< - Block, - TFullClient>, - >, - sc_service::Error, - > + 'static, - BIC: FnOnce( - Arc>>, - Option<&Registry>, - Option, - &TaskManager, - Arc, - Arc< - sc_transaction_pool::FullPool< - Block, - TFullClient>, - >, - >, - Arc>, - SyncCryptoStorePtr, - bool, - ) -> Result>, sc_service::Error>, -{ +) -> sc_service::error::Result<(TaskManager, Arc)> { let parachain_config = prepare_node_config(parachain_config); - let params = new_partial::(¶chain_config, build_import_queue)?; + let params = new_partial(¶chain_config)?; let (mut telemetry, telemetry_worker_handle) = params.other; let client = params.client.clone(); @@ -360,6 +263,7 @@ where network, params.keystore_container.sync_keystore(), force_authoring, + id, )?; let spawner = task_manager.spawn_handle(); @@ -398,19 +302,12 @@ where } /// Build the import queue for the parachain runtime. -#[allow(clippy::type_complexity)] -pub fn parachain_build_import_queue( - client: Arc>>, +fn build_import_queue( + client: Arc, config: &Configuration, telemetry: Option, task_manager: &TaskManager, -) -> Result< - sc_consensus::DefaultImportQueue< - Block, - TFullClient>, - >, - sc_service::Error, -> { +) -> Result, sc_service::Error> { let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client)?; cumulus_client_consensus_aura::import_queue::< @@ -441,6 +338,74 @@ pub fn parachain_build_import_queue( .map_err(Into::into) } +fn build_consensus( + client: Arc, + prometheus_registry: Option<&Registry>, + telemetry: Option, + task_manager: &TaskManager, + relay_chain_interface: Arc, + transaction_pool: Arc>, + sync_oracle: Arc>, + keystore: SyncCryptoStorePtr, + force_authoring: bool, + id: ParaId, +) -> Result>, sc_service::Error> { + let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client)?; + + let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording( + task_manager.spawn_handle(), + client.clone(), + transaction_pool, + prometheus_registry, + telemetry.clone(), + ); + + let params = BuildAuraConsensusParams { + proposer_factory, + create_inherent_data_providers: move |_, (relay_parent, validation_data)| { + let relay_chain_interface = relay_chain_interface.clone(); + async move { + let parachain_inherent = + cumulus_primitives_parachain_inherent::ParachainInherentData::create_at( + relay_parent, + &relay_chain_interface, + &validation_data, + id, + ) + .await; + let timestamp = sp_timestamp::InherentDataProvider::from_system_time(); + + let slot = + sp_consensus_aura::inherents::InherentDataProvider::from_timestamp_and_slot_duration( + *timestamp, + slot_duration, + ); + + let parachain_inherent = parachain_inherent.ok_or_else(|| { + Box::::from( + "Failed to create parachain inherent", + ) + })?; + Ok((slot, timestamp, parachain_inherent)) + } + }, + block_import: client.clone(), + para_client: client, + backoff_authoring_blocks: Option::<()>::None, + sync_oracle, + keystore, + force_authoring, + slot_duration, + // We got around 500ms for proposing + block_proposal_slot_portion: SlotProportion::new(1f32 / 24f32), + // And a maximum of 750ms if slots are skipped + max_block_proposal_slot_portion: Some(SlotProportion::new(1f32 / 16f32)), + telemetry, + }; + + Ok(AuraConsensus::build::(params)) +} + /// Start a parachain node. pub async fn start_parachain_node( parachain_config: Configuration, @@ -448,81 +413,6 @@ pub async fn start_parachain_node( collator_options: CollatorOptions, id: ParaId, hwbench: Option, -) -> sc_service::error::Result<( - TaskManager, - Arc>>, -)> { - start_node_impl::( - parachain_config, - polkadot_config, - collator_options, - id, - |_| Ok(RpcModule::new(())), - parachain_build_import_queue, - |client, - prometheus_registry, - telemetry, - task_manager, - relay_chain_interface, - transaction_pool, - sync_oracle, - keystore, - force_authoring| { - let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client)?; - - let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording( - task_manager.spawn_handle(), - client.clone(), - transaction_pool, - prometheus_registry, - telemetry.clone(), - ); - - Ok(AuraConsensus::build::( - BuildAuraConsensusParams { - proposer_factory, - create_inherent_data_providers: move |_, (relay_parent, validation_data)| { - let relay_chain_interface = relay_chain_interface.clone(); - async move { - let parachain_inherent = - cumulus_primitives_parachain_inherent::ParachainInherentData::create_at( - relay_parent, - &relay_chain_interface, - &validation_data, - id, - ).await; - let timestamp = sp_timestamp::InherentDataProvider::from_system_time(); - - let slot = - sp_consensus_aura::inherents::InherentDataProvider::from_timestamp_and_slot_duration( - *timestamp, - slot_duration, - ); - - let parachain_inherent = parachain_inherent.ok_or_else(|| { - Box::::from( - "Failed to create parachain inherent", - ) - })?; - Ok((slot, timestamp, parachain_inherent)) - } - }, - block_import: client.clone(), - para_client: client, - backoff_authoring_blocks: Option::<()>::None, - sync_oracle, - keystore, - force_authoring, - slot_duration, - // We got around 500ms for proposing - block_proposal_slot_portion: SlotProportion::new(1f32 / 24f32), - // And a maximum of 750ms if slots are skipped - max_block_proposal_slot_portion: Some(SlotProportion::new(1f32 / 16f32)), - telemetry, - }, - )) - }, - hwbench, - ) - .await +) -> sc_service::error::Result<(TaskManager, Arc)> { + start_node_impl(parachain_config, polkadot_config, collator_options, id, hwbench).await } diff --git a/polkadot-parachain/src/service.rs b/polkadot-parachain/src/service.rs index ca47af08ee..2f38da0bd5 100644 --- a/polkadot-parachain/src/service.rs +++ b/polkadot-parachain/src/service.rs @@ -69,6 +69,10 @@ type HostFunctions = sp_io::SubstrateHostFunctions; type HostFunctions = (sp_io::SubstrateHostFunctions, frame_benchmarking::benchmarking::HostFunctions); +type ParachainClient = TFullClient>; + +type ParachainBackend = TFullBackend; + /// Native executor instance. pub struct ShellRuntimeExecutor; @@ -153,45 +157,33 @@ pub fn new_partial( build_import_queue: BIQ, ) -> Result< PartialComponents< - TFullClient>, - TFullBackend, + ParachainClient, + ParachainBackend, (), - sc_consensus::DefaultImportQueue< - Block, - TFullClient>, - >, - sc_transaction_pool::FullPool< - Block, - TFullClient>, - >, + sc_consensus::DefaultImportQueue>, + sc_transaction_pool::FullPool>, (Option, Option), >, sc_service::Error, > where - RuntimeApi: ConstructRuntimeApi>> - + Send - + Sync - + 'static, + RuntimeApi: ConstructRuntimeApi> + Send + Sync + 'static, RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue + sp_api::Metadata + sp_session::SessionKeys + sp_api::ApiExt< Block, - StateBackend = sc_client_api::StateBackendFor, Block>, + StateBackend = sc_client_api::StateBackendFor, > + sp_offchain::OffchainWorkerApi + sp_block_builder::BlockBuilder, - sc_client_api::StateBackendFor, Block>: sp_api::StateBackend, + sc_client_api::StateBackendFor: sp_api::StateBackend, BIQ: FnOnce( - Arc>>, + Arc>, &Configuration, Option, &TaskManager, ) -> Result< - sc_consensus::DefaultImportQueue< - Block, - TFullClient>, - >, + sc_consensus::DefaultImportQueue>, sc_service::Error, >, { @@ -292,54 +284,38 @@ async fn start_shell_node_impl( build_import_queue: BIQ, build_consensus: BIC, hwbench: Option, -) -> sc_service::error::Result<( - TaskManager, - Arc>>, -)> +) -> sc_service::error::Result<(TaskManager, Arc>)> where - RuntimeApi: ConstructRuntimeApi>> - + Send - + Sync - + 'static, + RuntimeApi: ConstructRuntimeApi> + Send + Sync + 'static, RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue + sp_api::Metadata + sp_session::SessionKeys + sp_api::ApiExt< Block, - StateBackend = sc_client_api::StateBackendFor, Block>, + StateBackend = sc_client_api::StateBackendFor, > + sp_offchain::OffchainWorkerApi + sp_block_builder::BlockBuilder + cumulus_primitives_core::CollectCollationInfo, - sc_client_api::StateBackendFor, Block>: sp_api::StateBackend, - RB: Fn( - Arc>>, - ) -> Result, sc_service::Error> + sc_client_api::StateBackendFor: sp_api::StateBackend, + RB: Fn(Arc>) -> Result, sc_service::Error> + Send + 'static, BIQ: FnOnce( - Arc>>, + Arc>, &Configuration, Option, &TaskManager, ) -> Result< - sc_consensus::DefaultImportQueue< - Block, - TFullClient>, - >, + sc_consensus::DefaultImportQueue>, sc_service::Error, >, BIC: FnOnce( - Arc>>, + Arc>, Option<&Registry>, Option, &TaskManager, Arc, - Arc< - sc_transaction_pool::FullPool< - Block, - TFullClient>, - >, - >, + Arc>>, Arc>, SyncCryptoStorePtr, bool, @@ -488,56 +464,40 @@ async fn start_node_impl( build_import_queue: BIQ, build_consensus: BIC, hwbench: Option, -) -> sc_service::error::Result<( - TaskManager, - Arc>>, -)> +) -> sc_service::error::Result<(TaskManager, Arc>)> where - RuntimeApi: ConstructRuntimeApi>> - + Send - + Sync - + 'static, + RuntimeApi: ConstructRuntimeApi> + Send + Sync + 'static, RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue + sp_api::Metadata + sp_session::SessionKeys + sp_api::ApiExt< Block, - StateBackend = sc_client_api::StateBackendFor, Block>, + StateBackend = sc_client_api::StateBackendFor, > + sp_offchain::OffchainWorkerApi + sp_block_builder::BlockBuilder + cumulus_primitives_core::CollectCollationInfo + pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi + frame_rpc_system::AccountNonceApi, - sc_client_api::StateBackendFor, Block>: sp_api::StateBackend, - RB: Fn( - Arc>>, - ) -> Result, sc_service::Error> + sc_client_api::StateBackendFor: sp_api::StateBackend, + RB: Fn(Arc>) -> Result, sc_service::Error> + Send + 'static, BIQ: FnOnce( - Arc>>, + Arc>, &Configuration, Option, &TaskManager, ) -> Result< - sc_consensus::DefaultImportQueue< - Block, - TFullClient>, - >, + sc_consensus::DefaultImportQueue>, sc_service::Error, > + 'static, BIC: FnOnce( - Arc>>, + Arc>, Option<&Registry>, Option, &TaskManager, Arc, - Arc< - sc_transaction_pool::FullPool< - Block, - TFullClient>, - >, - >, + Arc>>, Arc>, SyncCryptoStorePtr, bool, @@ -686,17 +646,12 @@ where /// Build the import queue for the rococo parachain runtime. pub fn rococo_parachain_build_import_queue( - client: Arc< - TFullClient>, - >, + client: Arc>, config: &Configuration, telemetry: Option, task_manager: &TaskManager, ) -> Result< - sc_consensus::DefaultImportQueue< - Block, - TFullClient>, - >, + sc_consensus::DefaultImportQueue>, sc_service::Error, > { let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client)?; @@ -738,7 +693,7 @@ pub async fn start_rococo_parachain_node( hwbench: Option, ) -> sc_service::error::Result<( TaskManager, - Arc>>, + Arc>, )> { start_node_impl::( parachain_config, @@ -820,31 +775,22 @@ pub async fn start_rococo_parachain_node( /// Build the import queue for the shell runtime. pub fn shell_build_import_queue( - client: Arc>>, + client: Arc>, config: &Configuration, _: Option, task_manager: &TaskManager, -) -> Result< - sc_consensus::DefaultImportQueue< - Block, - TFullClient>, - >, - sc_service::Error, -> +) -> Result>, sc_service::Error> where - RuntimeApi: ConstructRuntimeApi>> - + Send - + Sync - + 'static, + RuntimeApi: ConstructRuntimeApi> + Send + Sync + 'static, RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue + sp_api::Metadata + sp_session::SessionKeys + sp_api::ApiExt< Block, - StateBackend = sc_client_api::StateBackendFor, Block>, + StateBackend = sc_client_api::StateBackendFor, > + sp_offchain::OffchainWorkerApi + sp_block_builder::BlockBuilder, - sc_client_api::StateBackendFor, Block>: sp_api::StateBackend, + sc_client_api::StateBackendFor: sp_api::StateBackend, { cumulus_client_consensus_relay_chain::import_queue( client.clone(), @@ -863,25 +809,19 @@ pub async fn start_shell_node( collator_options: CollatorOptions, id: ParaId, hwbench: Option, -) -> sc_service::error::Result<( - TaskManager, - Arc>>, -)> +) -> sc_service::error::Result<(TaskManager, Arc>)> where - RuntimeApi: ConstructRuntimeApi>> - + Send - + Sync - + 'static, + RuntimeApi: ConstructRuntimeApi> + Send + Sync + 'static, RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue + sp_api::Metadata + sp_session::SessionKeys + sp_api::ApiExt< Block, - StateBackend = sc_client_api::StateBackendFor, Block>, + StateBackend = sc_client_api::StateBackendFor, > + sp_offchain::OffchainWorkerApi + sp_block_builder::BlockBuilder + cumulus_primitives_core::CollectCollationInfo, - sc_client_api::StateBackendFor, Block>: sp_api::StateBackend, + sc_client_api::StateBackendFor: sp_api::StateBackend, { start_shell_node_impl::( parachain_config, @@ -1048,32 +988,23 @@ where /// Build the import queue for Statemint and other Aura-based runtimes. pub fn aura_build_import_queue( - client: Arc>>, + client: Arc>, config: &Configuration, telemetry_handle: Option, task_manager: &TaskManager, -) -> Result< - sc_consensus::DefaultImportQueue< - Block, - TFullClient>, - >, - sc_service::Error, -> +) -> Result>, sc_service::Error> where - RuntimeApi: ConstructRuntimeApi>> - + Send - + Sync - + 'static, + RuntimeApi: ConstructRuntimeApi> + Send + Sync + 'static, RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue + sp_api::Metadata + sp_session::SessionKeys + sp_api::ApiExt< Block, - StateBackend = sc_client_api::StateBackendFor, Block>, + StateBackend = sc_client_api::StateBackendFor, > + sp_offchain::OffchainWorkerApi + sp_block_builder::BlockBuilder + sp_consensus_aura::AuraApi::Pair as Pair>::Public>, - sc_client_api::StateBackendFor, Block>: sp_api::StateBackend, + sc_client_api::StateBackendFor: sp_api::StateBackend, <::Pair as Pair>::Signature: TryFrom> + std::hash::Hash + sp_runtime::traits::Member + Codec, { @@ -1131,28 +1062,22 @@ pub async fn start_generic_aura_node( collator_options: CollatorOptions, id: ParaId, hwbench: Option, -) -> sc_service::error::Result<( - TaskManager, - Arc>>, -)> +) -> sc_service::error::Result<(TaskManager, Arc>)> where - RuntimeApi: ConstructRuntimeApi>> - + Send - + Sync - + 'static, + RuntimeApi: ConstructRuntimeApi> + Send + Sync + 'static, RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue + sp_api::Metadata + sp_session::SessionKeys + sp_api::ApiExt< Block, - StateBackend = sc_client_api::StateBackendFor, Block>, + StateBackend = sc_client_api::StateBackendFor, > + sp_offchain::OffchainWorkerApi + sp_block_builder::BlockBuilder + cumulus_primitives_core::CollectCollationInfo + sp_consensus_aura::AuraApi::Pair as Pair>::Public> + pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi + frame_rpc_system::AccountNonceApi, - sc_client_api::StateBackendFor, Block>: sp_api::StateBackend, + sc_client_api::StateBackendFor: sp_api::StateBackend, <::Pair as Pair>::Signature: TryFrom> + std::hash::Hash + sp_runtime::traits::Member + Codec, { @@ -1302,56 +1227,40 @@ async fn start_contracts_rococo_node_impl( build_import_queue: BIQ, build_consensus: BIC, hwbench: Option, -) -> sc_service::error::Result<( - TaskManager, - Arc>>, -)> +) -> sc_service::error::Result<(TaskManager, Arc>)> where - RuntimeApi: ConstructRuntimeApi>> - + Send - + Sync - + 'static, + RuntimeApi: ConstructRuntimeApi> + Send + Sync + 'static, RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue + sp_api::Metadata + sp_session::SessionKeys + sp_api::ApiExt< Block, - StateBackend = sc_client_api::StateBackendFor, Block>, + StateBackend = sc_client_api::StateBackendFor, > + sp_offchain::OffchainWorkerApi + sp_block_builder::BlockBuilder + cumulus_primitives_core::CollectCollationInfo + pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi + frame_rpc_system::AccountNonceApi, - sc_client_api::StateBackendFor, Block>: sp_api::StateBackend, - RB: Fn( - Arc>>, - ) -> Result, sc_service::Error> + sc_client_api::StateBackendFor: sp_api::StateBackend, + RB: Fn(Arc>) -> Result, sc_service::Error> + Send + 'static, BIQ: FnOnce( - Arc>>, + Arc>, &Configuration, Option, &TaskManager, ) -> Result< - sc_consensus::DefaultImportQueue< - Block, - TFullClient>, - >, + sc_consensus::DefaultImportQueue>, sc_service::Error, > + 'static, BIC: FnOnce( - Arc>>, + Arc>, Option<&Registry>, Option, &TaskManager, Arc, - Arc< - sc_transaction_pool::FullPool< - Block, - TFullClient>, - >, - >, + Arc>>, Arc>, SyncCryptoStorePtr, bool, @@ -1500,17 +1409,12 @@ where #[allow(clippy::type_complexity)] pub fn contracts_rococo_build_import_queue( - client: Arc< - TFullClient>, - >, + client: Arc>, config: &Configuration, telemetry: Option, task_manager: &TaskManager, ) -> Result< - sc_consensus::DefaultImportQueue< - Block, - TFullClient>, - >, + sc_consensus::DefaultImportQueue>, sc_service::Error, > { let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client)?; @@ -1552,7 +1456,7 @@ pub async fn start_contracts_rococo_node( hwbench: Option, ) -> sc_service::error::Result<( TaskManager, - Arc>>, + Arc>, )> { start_contracts_rococo_node_impl::( parachain_config, From 98425f144b8b78f5b01c3fca53f97ec845d7eb38 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Oct 2022 11:18:48 +0200 Subject: [PATCH 28/48] Bump clap from 4.0.11 to 4.0.17 (#1778) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.11 to 4.0.17. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v4.0.11...v4.0.17) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 24 ++++++++++++------------ client/cli/Cargo.toml | 2 +- parachain-template/node/Cargo.toml | 2 +- polkadot-parachain/Cargo.toml | 2 +- test/service/Cargo.toml | 2 +- 5 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 47ff65325d..8d1c5da8bc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -989,9 +989,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.0.11" +version = "4.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ed45cc2c62a3eff523e718d8576ba762c83a3146151093283ac62ae11933a73" +checksum = "06badb543e734a2d6568e19a40af66ed5364360b9226184926f89d229b4b4267" dependencies = [ "atty", "bitflags", @@ -1004,9 +1004,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.0.10" +version = "4.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db342ce9fda24fb191e2ed4e102055a4d381c1086a06630174cd8da8d5d917ce" +checksum = "c42f169caba89a7d512b5418b09864543eeb4d497416c917d7137863bd2076ad" dependencies = [ "heck", "proc-macro-error", @@ -1521,7 +1521,7 @@ dependencies = [ name = "cumulus-client-cli" version = "0.1.0" dependencies = [ - "clap 4.0.11", + "clap 4.0.17", "parity-scale-codec", "sc-chain-spec", "sc-cli", @@ -2147,7 +2147,7 @@ name = "cumulus-test-service" version = "0.1.0" dependencies = [ "async-trait", - "clap 4.0.11", + "clap 4.0.17", "criterion", "cumulus-client-cli", "cumulus-client-consensus-common", @@ -2853,7 +2853,7 @@ dependencies = [ "Inflector", "array-bytes", "chrono", - "clap 4.0.11", + "clap 4.0.17", "comfy-table", "frame-benchmarking", "frame-support", @@ -6370,7 +6370,7 @@ dependencies = [ name = "parachain-template-node" version = "0.1.0" dependencies = [ - "clap 4.0.11", + "clap 4.0.17", "cumulus-client-cli", "cumulus-client-consensus-aura", "cumulus-client-consensus-common", @@ -6970,7 +6970,7 @@ name = "polkadot-cli" version = "0.9.29" source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" dependencies = [ - "clap 4.0.11", + "clap 4.0.17", "frame-benchmarking-cli", "futures", "log", @@ -7631,7 +7631,7 @@ version = "0.9.300" dependencies = [ "assert_cmd", "async-trait", - "clap 4.0.11", + "clap 4.0.17", "collectives-polkadot-runtime", "contracts-rococo-runtime", "cumulus-client-cli", @@ -9263,7 +9263,7 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818 dependencies = [ "array-bytes", "chrono", - "clap 4.0.11", + "clap 4.0.17", "fdlimit", "futures", "libp2p", @@ -12375,7 +12375,7 @@ name = "try-runtime-cli" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ - "clap 4.0.11", + "clap 4.0.17", "frame-try-runtime", "jsonrpsee", "log", diff --git a/client/cli/Cargo.toml b/client/cli/Cargo.toml index 968d19e800..9fcbb96a80 100644 --- a/client/cli/Cargo.toml +++ b/client/cli/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -clap = { version = "4.0.9", features = ["derive"] } +clap = { version = "4.0.17", features = ["derive"] } codec = { package = "parity-scale-codec", version = "3.0.0" } url = "2.3.1" diff --git a/parachain-template/node/Cargo.toml b/parachain-template/node/Cargo.toml index 6c4fb54571..c482ff1878 100644 --- a/parachain-template/node/Cargo.toml +++ b/parachain-template/node/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" build = "build.rs" [dependencies] -clap = { version = "4.0.9", features = ["derive"] } +clap = { version = "4.0.17", features = ["derive"] } log = "0.4.17" codec = { package = "parity-scale-codec", version = "3.0.0" } serde = { version = "1.0.145", features = ["derive"] } diff --git a/polkadot-parachain/Cargo.toml b/polkadot-parachain/Cargo.toml index bb06fa08f9..d57894c225 100644 --- a/polkadot-parachain/Cargo.toml +++ b/polkadot-parachain/Cargo.toml @@ -8,7 +8,7 @@ description = "Runs a polkadot parachain node which could be a collator." [dependencies] async-trait = "0.1.57" -clap = { version = "4.0.9", features = ["derive"] } +clap = { version = "4.0.17", features = ["derive"] } codec = { package = "parity-scale-codec", version = "3.0.0" } futures = "0.3.24" hex-literal = "0.3.4" diff --git a/test/service/Cargo.toml b/test/service/Cargo.toml index 2e9c07f771..bef0c60ec7 100644 --- a/test/service/Cargo.toml +++ b/test/service/Cargo.toml @@ -10,7 +10,7 @@ path = "src/main.rs" [dependencies] async-trait = "0.1.57" -clap = { version = "4.0.9", features = ["derive"] } +clap = { version = "4.0.17", features = ["derive"] } codec = { package = "parity-scale-codec", version = "3.0.0" } criterion = { version = "0.4.0", features = [ "async_tokio" ] } jsonrpsee = { version = "0.15.1", features = ["server"] } From 7273afa5f23a5fbc56e6dfdffc2611db7f822fb0 Mon Sep 17 00:00:00 2001 From: Andronik Date: Wed, 19 Oct 2022 12:02:29 +0200 Subject: [PATCH 29/48] pov-recovery: try connect to validators (#1711) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * zombienet/pov-recovery: do not setup reserved connection for collators * connect eve to dave * REVERTME: diener update --polkadot --branch ao-recovery-try-connect * REVERTME: cargo update -p sp-io * REVERTME: cargo update -p sp-io and hope for the best * pass reserved flags for eve after -- * Revert "REVERTME: cargo update -p sp-io and hope for the best" This reverts commit 0d66b70e5ccedc7a35bcf1b30a070e68cd6a8ccc. * Revert "REVERTME: cargo update -p sp-io" This reverts commit f8d16c375afd41b8e0c84b59fe62019b86ba95b9. * REVERTME: cargo update -p sp-io * Revert "REVERTME: cargo update -p sp-io" This reverts commit d48e1e6aa2134591b285e284077a063356d44eed. * REVERTME: cargo update -p sp-io * REVERTME: cargo update -p sp-io * try some logs and flags * apply some suggestions from Sebastian * let Charlie produce blocks * Revert "REVERTME: cargo update -p sp-io" This reverts commit 02838a656eadfcbd26520e6b60ee21ffd8b27afd. * git checkout master Cargo.lock * Revert "REVERTME: diener update --polkadot --branch ao-recovery-try-connect" This reverts commit 8ae8d5347b787ce5e08d6fdb5e7f266299fd70dd. * zombienet/pov-recovery: 4 validators * REVERTME: diener update --polkadot --branch ao-recovery-try-connect && cargo update -p polkadot-primitives * Revert "REVERTME: diener update --polkadot --branch ao-recovery-try-connect && cargo update -p polkadot-primitives" This reverts commit 3cc918220de5bf8ca5368586e55556464d106afd. * make sure it is not due to backing group connections * clean up flags * try no-mdns on collators, limit out-peers on validators * try no-mdns on validators and bob * fix bob flag * try 7 validators (3 chunks needed for recovery) * reserved-only on validators * reserved-only on alice and charlie * explicitly pass log targets * rm default_args * parachain=debug and cumulus-pov-recovery=debug * try another idea * try 13 validators (4 chunks required) * bump block height to 20 * Register parachain after 20sec, increase block target to 20 * bump zombienet version * remove debug * bump zombienet * update lockfile for {"polkadot", "substrate"} Co-authored-by: Sebastian Kunert Co-authored-by: Javier Viola Co-authored-by: parity-processbot <> Co-authored-by: Bastian Köcher --- .gitlab-ci.yml | 2 +- zombienet_tests/0002-pov_recovery.feature | 25 +++++++--- zombienet_tests/0002-pov_recovery.toml | 61 +++++++++++++---------- zombienet_tests/register-para.js | 9 ++++ 4 files changed, 61 insertions(+), 36 deletions(-) create mode 100644 zombienet_tests/register-para.js diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 38bccdb91b..dcb7de25f2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,7 +29,7 @@ variables: CI_IMAGE: "paritytech/ci-linux:production" DOCKER_OS: "debian:stretch" ARCH: "x86_64" - ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.2.59" + ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.2.80" .collect-artifacts: &collect-artifacts artifacts: diff --git a/zombienet_tests/0002-pov_recovery.feature b/zombienet_tests/0002-pov_recovery.feature index fa9836e264..0b4d0a81de 100644 --- a/zombienet_tests/0002-pov_recovery.feature +++ b/zombienet_tests/0002-pov_recovery.feature @@ -3,11 +3,20 @@ Network: ./0002-pov_recovery.toml Creds: config -alice: is up -bob: is up -charlie: is up -dave: is up -eve: is up -alice: parachain 2000 is registered within 225 seconds -dave: reports block height is at least 7 within 250 seconds -eve: reports block height is at least 7 within 250 seconds +validator-0: is up +validator-1: is up +validator-2: is up +validator-3: is up +alice: is up within 60 seconds +bob: is up within 60 seconds +charlie: is up within 60 seconds + +# wait 30 blocks and register parachain +validator-3: reports block height is at least 30 within 250 seconds +validator-0: js-script ./register-para.js with "2000" within 240 seconds +validator-0: parachain 2000 is registered within 300 seconds + +# check block production +bob: reports block height is at least 20 within 600 seconds +alice: reports block height is at least 20 within 600 seconds +charlie: reports block height is at least 20 within 600 seconds diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index fc62d94595..a9117dd82c 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -1,44 +1,51 @@ [relaychain] default_image = "{{RELAY_IMAGE}}" default_command = "polkadot" -default_args = [ "-lparachain=debug" ] chain = "rococo-local" - [[relaychain.nodes]] - name = "alice" - validator = true +[relaychain.genesis.runtime.runtime_genesis_config.configuration.config] +# set parameters such that collators only connect to 1 validator as a backing group +max_validators_per_core = 1 +group_rotation_frequency = 100 # 10 mins [[relaychain.nodes]] - name = "bob" - validator = true + name = "ferdie" # bootnode fullnode + validator = false + + [[relaychain.node_groups]] + name = "validator" + count = 13 + args = ["-lparachain::availability=trace,sync=debug,parachain=debug", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] [[parachains]] id = 2000 cumulus_based = true +register_para = false +add_to_genesis = false - # run charlie as parachain collator + # run bob as a parachain collator who is the only one producing blocks + # alice and charlie will need to recover the pov blocks through availability recovery + [[parachains.collators]] + name = "bob" + validator = true # collator + image = "{{COL_IMAGE}}" + command = "test-parachain" + args = ["--disable-block-announcements"] + + # run alice as a parachain collator who does not produce blocks + # alice is a bootnode for bob and charlie + [[parachains.collators]] + name = "alice" + validator = true # collator + image = "{{COL_IMAGE}}" + command = "test-parachain" + args = ["-lparachain::availability=trace,sync=debug,parachain=debug,cumulus-pov-recovery=debug", "--use-null-consensus", "--disable-block-announcements", "--bootnodes {{'bob'|zombie('multiAddress')}}", "--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] + + # run eve as a parachain full node [[parachains.collators]] name = "charlie" - validator = true + validator = false # full node image = "{{COL_IMAGE}}" command = "test-parachain" - args = ["-lparachain=debug"] - - # Run dave as parachain collator and eve as parachain full node - # - # They will need to recover the pov blocks through availability recovery. - [[parachains.collators]] - name = "dave" - validator = true - image = "{{COL_IMAGE}}" - command = "test-parachain" - args = ["--reserved-only", "--reserved-nodes {{'charlie'|zombie('multiAddress')}}", "--use-null-consensus", "--disable-block-announcements"] - - # run eve as parachain full node that is only connected to dave - [[parachains.collators]] - name = "eve" - validator = false - image = "{{COL_IMAGE}}" - command = "test-parachain" - args = ["--reserved-only", "--reserved-nodes {{'charlie'|zombie('multiAddress')}}", "--use-null-consensus", "--disable-block-announcements"] + args = ["-lparachain::availability=trace,sync=debug,parachain=debug,cumulus-pov-recovery=debug", "--disable-block-announcements", "--bootnodes {{'bob'|zombie('multiAddress')}}","--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] diff --git a/zombienet_tests/register-para.js b/zombienet_tests/register-para.js new file mode 100644 index 0000000000..c080904aef --- /dev/null +++ b/zombienet_tests/register-para.js @@ -0,0 +1,9 @@ +async function run(nodeName, networkInfo, args) { + const paraIdStr = args[0]; + const para = networkInfo.paras[paraIdStr]; + const relayNode = networkInfo.relay[0]; + + await zombie.registerParachain(parseInt(paraIdStr,10),para.wasmPath, para.statePath, relayNode.wsUri, "//Alice", true); +} + +module.exports = { run } From a53703ee3ee02a97a38902c4cab822484d25a7c8 Mon Sep 17 00:00:00 2001 From: Alexander Samusev <41779041+alvicsam@users.noreply.github.com> Date: Wed, 19 Oct 2022 16:31:42 +0200 Subject: [PATCH 30/48] [ci] Split .gitlab-ci.yml (#1701) * [WIP][ci] Split .gitlab-ci.yml * comment unused includes * fix typo * fix needs * add all stages * exclude zombienet from check --- .github/pr-custom-review.yml | 1 + .gitlab-ci.yml | 581 ++---------------- scripts/ci/gitlab/pipeline/benchmarks.yml | 61 ++ scripts/ci/gitlab/pipeline/build.yml | 113 ++++ .../ci/gitlab/pipeline/integration_tests.yml | 2 + scripts/ci/gitlab/pipeline/publish.yml | 117 ++++ scripts/ci/gitlab/pipeline/test.yml | 79 +++ scripts/ci/gitlab/pipeline/zombienet.yml | 101 +++ 8 files changed, 516 insertions(+), 539 deletions(-) create mode 100644 scripts/ci/gitlab/pipeline/benchmarks.yml create mode 100644 scripts/ci/gitlab/pipeline/build.yml create mode 100644 scripts/ci/gitlab/pipeline/integration_tests.yml create mode 100644 scripts/ci/gitlab/pipeline/publish.yml create mode 100644 scripts/ci/gitlab/pipeline/test.yml create mode 100644 scripts/ci/gitlab/pipeline/zombienet.yml diff --git a/.github/pr-custom-review.yml b/.github/pr-custom-review.yml index 18e2482b2a..9915538887 100644 --- a/.github/pr-custom-review.yml +++ b/.github/pr-custom-review.yml @@ -29,6 +29,7 @@ rules: check_type: changed_files condition: include: ^\.gitlab-ci\.yml|^scripts/ci/.*|^\.github/.* + exclude: ^scripts/ci/gitlab/pipeline/zombienet.yml$ min_approvals: 2 teams: - ci diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dcb7de25f2..933c0eb196 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,7 +11,8 @@ stages: - benchmarks-build - benchmarks-run - publish - - integration-test + - integration-tests + - zombienet default: interruptible: true @@ -31,7 +32,7 @@ variables: ARCH: "x86_64" ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.2.80" -.collect-artifacts: &collect-artifacts +.collect-artifacts: artifacts: name: "${CI_JOB_NAME}_${CI_COMMIT_REF_NAME}" when: on_success @@ -39,27 +40,21 @@ variables: paths: - ./artifacts/ -.rust-info-script: &rust-info-script - - rustup show - - cargo --version - - rustup +nightly show - - cargo +nightly --version - - bash --version - # collecting vars for pipeline stopper # they will be used if the job fails -.pipeline-stopper-vars: &pipeline-stopper-vars +.pipeline-stopper-vars: + before_script: - echo "FAILED_JOB_URL=${CI_JOB_URL}" > pipeline-stopper.env - echo "FAILED_JOB_NAME=${CI_JOB_NAME}" >> pipeline-stopper.env - echo "FAILED_JOB_NAME=${CI_JOB_NAME}" >> pipeline-stopper.env - echo "PR_NUM=${CI_COMMIT_REF_NAME}" >> pipeline-stopper.env -.pipeline-stopper-artifacts: &pipeline-stopper-artifacts +.pipeline-stopper-artifacts: artifacts: reports: dotenv: pipeline-stopper.env -.common-refs: &common-refs +.common-refs: # these jobs run always* rules: - if: $CI_PIPELINE_SOURCE == "schedule" @@ -69,29 +64,29 @@ variables: - if: $CI_COMMIT_REF_NAME =~ /^release-parachains-v[0-9].*$/ # i.e. release-parachains-v1.0, release-parachains-v2.1rc1, release-parachains-v3000 - if: $CI_COMMIT_REF_NAME =~ /^polkadot-v[0-9]+\.[0-9]+.*$/ # i.e. polkadot-v1.0.99, polkadot-v2.1rc1 -.pr-refs: &pr-refs +.pr-refs: # these jobs run always* rules: - if: $CI_COMMIT_REF_NAME =~ /^[0-9]+$/ # PRs -.publish-refs: &publish-refs +.publish-refs: rules: - if: $CI_COMMIT_REF_NAME == "master" - if: $CI_PIPELINE_SOURCE == "schedule" - if: $CI_COMMIT_REF_NAME =~ /^v[0-9]+\.[0-9]+.*$/ # i.e. v1.0, v2.1rc1 # run benchmarks manually only on release-parachains-v* branch -.benchmarks-manual-refs: &benchmarks-manual-refs +.benchmarks-manual-refs: rules: - if: $CI_COMMIT_REF_NAME =~ /^release-parachains-v[0-9].*$/ # i.e. release-parachains-v1.0, release-parachains-v2.1rc1, release-parachains-v3000 when: manual # run benchmarks only on release-parachains-v* branch -.benchmarks-refs: &benchmarks-refs +.benchmarks-refs: rules: - if: $CI_COMMIT_REF_NAME =~ /^release-parachains-v[0-9].*$/ # i.e. release-parachains-v1.0, release-parachains-v2.1rc1, release-parachains-v3000 -.zombienet-refs: &zombienet-refs +.zombienet-refs: rules: - if: $CI_PIPELINE_SOURCE == "pipeline" when: never @@ -100,540 +95,48 @@ variables: - if: $CI_COMMIT_REF_NAME == "master" - if: $CI_COMMIT_REF_NAME =~ /^[0-9]+$/ # PRs -.docker-env: &docker-env +.docker-env: image: "${CI_IMAGE}" before_script: - - *rust-info-script + - rustup show + - cargo --version + - rustup +nightly show + - cargo +nightly --version + - bash --version tags: - linux-docker -.kubernetes-env: &kubernetes-env +.kubernetes-env: image: "${CI_IMAGE}" tags: - kubernetes-parity-build -#### stage: test - -test-linux-stable: - stage: test - <<: *docker-env - <<: *common-refs - <<: *pipeline-stopper-artifacts - before_script: - - *rust-info-script - - *pipeline-stopper-vars - variables: - # Enable debug assertions since we are running optimized builds for testing - # but still want to have debug assertions. - RUSTFLAGS: "-Cdebug-assertions=y -Dwarnings" +.git-commit-push: script: - - time cargo nextest run --all --release --locked --run-ignored all - -test-doc: - stage: test - <<: *docker-env - <<: *common-refs - variables: - # Enable debug assertions since we are running optimized builds for testing - # but still want to have debug assertions. - RUSTFLAGS: "-Cdebug-assertions=y -Dwarnings" - script: - - time cargo test --doc - -check-runtime-benchmarks: - stage: test - <<: *docker-env - <<: *common-refs - script: - # Check that the node will compile with `runtime-benchmarks` feature flag. - - time cargo check --all --features runtime-benchmarks - # Check that parachain-template will compile with `runtime-benchmarks` feature flag. - - time cargo check -p parachain-template-node --features runtime-benchmarks - -cargo-check-try-runtime: - stage: test - <<: *docker-env - <<: *common-refs - # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs - needs: - - job: check-runtime-benchmarks - artifacts: false - script: - # Check that the node will compile with `try-runtime` feature flag. - - time cargo check --all --features try-runtime - # Check that parachain-template will compile with `try-runtime` feature flag. - - time cargo check -p parachain-template-node --features try-runtime - -check-rustdoc: - stage: test - <<: *docker-env - <<: *common-refs - variables: - SKIP_WASM_BUILD: 1 - RUSTDOCFLAGS: "-Dwarnings" - script: - - time cargo +nightly doc --workspace --all-features --verbose --no-deps - -cargo-check-benches: - stage: test - <<: *docker-env - <<: *common-refs - # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs - needs: - - job: check-rustdoc - artifacts: false - script: - - time cargo check --all --benches - -#### stage: build - -build-linux-stable: - stage: build - <<: *docker-env - <<: *collect-artifacts - <<: *common-refs - variables: - # Enable debug assertions since we are running optimized builds for testing - # but still want to have debug assertions. - RUSTFLAGS: "-Cdebug-assertions=y -Dwarnings" - # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs - needs: - - job: check-rustdoc - artifacts: false - script: - - echo "___Building a binary, please refrain from using it in production since it goes with the debug assertions.___" - - time cargo build --release --locked --bin polkadot-parachain - - echo "___Packing the artifacts___" - - mkdir -p ./artifacts - - mv ./target/release/polkadot-parachain ./artifacts/. - - echo "___The VERSION is either a tag name or the curent branch if triggered not by a tag___" - - echo ${CI_COMMIT_REF_NAME} | tee ./artifacts/VERSION - -build-test-parachain: - stage: build - <<: *docker-env - <<: *collect-artifacts - <<: *common-refs - variables: - # Enable debug assertions since we are running optimized builds for testing - # but still want to have debug assertions. - RUSTFLAGS: "-Cdebug-assertions=y -Dwarnings" - # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs - needs: - - job: check-rustdoc - artifacts: false - script: - - echo "___Building a binary, please refrain from using it in production since it goes with the debug assertions.___" - - time cargo +nightly build --release --locked --bin test-parachain - - echo "___Packing the artifacts___" - - mkdir -p ./artifacts - - mv ./target/release/test-parachain ./artifacts/. - - mkdir -p ./artifacts/zombienet - - mv ./target/release/wbuild/cumulus-test-runtime/wasm_binary_spec_version_incremented.rs.compact.compressed.wasm ./artifacts/zombienet/. - -# build runtime only if files in $RUNTIME_PATH/$RUNTIME_NAME were changed -.build-runtime-template: &build-runtime-template - stage: build - <<: *docker-env - <<: *pr-refs - # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs - needs: - - job: check-rustdoc - artifacts: false - variables: - RUNTIME_PATH: "parachains/runtimes/assets" - script: - - cd ${RUNTIME_PATH} - - for directory in $(echo */); do - echo "_____Running cargo check for ${directory} ______"; - cd ${directory}; - pwd; - SKIP_WASM_BUILD=1 cargo check; - cd ..; - done - -# DAG: build-runtime-assets -> build-runtime-collectives -> build-runtime-contracts -# DAG: build-runtime-assets ->build-runtime-starters -> build-runtime-testing -build-runtime-assets: - <<: *build-runtime-template - variables: - RUNTIME_PATH: "parachains/runtimes/assets" - -build-runtime-collectives: - <<: *build-runtime-template - variables: - RUNTIME_PATH: "parachains/runtimes/collectives" - # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs - needs: - - job: build-runtime-assets - artifacts: false - -build-runtime-contracts: - <<: *build-runtime-template - variables: - RUNTIME_PATH: "parachains/runtimes/contracts" - # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs - needs: - - job: build-runtime-collectives - artifacts: false - -build-runtime-starters: - <<: *build-runtime-template - variables: - RUNTIME_PATH: "parachains/runtimes/starters" - # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs - needs: - - job: build-runtime-assets - artifacts: false - -build-runtime-testing: - <<: *build-runtime-template - variables: - RUNTIME_PATH: "parachains/runtimes/testing" - # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs - needs: - - job: build-runtime-starters - artifacts: false - - -#### stage: publish - -.build-push-image: &build-push-image - image: quay.io/buildah/stable - variables: - DOCKERFILE: "" # docker/path-to.Dockerfile - IMAGE_NAME: "" # docker.io/paritypr/image_name - VERSION: "${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHORT_SHA}" - script: - - test "$PARITYPR_USER" -a "$PARITYPR_PASS" || - ( echo "no docker credentials provided"; exit 1 ) - - buildah bud - --format=docker - --build-arg VCS_REF="${CI_COMMIT_SHA}" - --build-arg BUILD_DATE="$(date -u '+%Y-%m-%dT%H:%M:%SZ')" - --build-arg IMAGE_NAME="${IMAGE_NAME}" - --tag "$IMAGE_NAME:$VERSION" - --file ${DOCKERFILE} . - - echo "$PARITYPR_PASS" | - buildah login --username "$PARITYPR_USER" --password-stdin docker.io - - buildah info - - buildah push --format=v2s2 "$IMAGE_NAME:$VERSION" - after_script: - - buildah logout --all - -build-push-image-polkadot-parachain-debug: - stage: publish - <<: *kubernetes-env - <<: *common-refs - <<: *build-push-image - needs: - - job: build-linux-stable - artifacts: true - variables: - DOCKERFILE: "docker/polkadot-parachain-debug_unsigned_injected.Dockerfile" - IMAGE_NAME: "docker.io/paritypr/polkadot-parachain-debug" - VERSION: "${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHORT_SHA}" - -build-push-image-test-parachain: - stage: publish - <<: *kubernetes-env - <<: *common-refs - <<: *build-push-image - needs: - - job: build-test-parachain - artifacts: true - variables: - DOCKERFILE: "docker/test-parachain_injected.Dockerfile" - IMAGE_NAME: "docker.io/paritypr/test-parachain" - VERSION: "${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHORT_SHA}" - -publish-s3: - stage: publish - <<: *kubernetes-env - image: paritytech/awscli:latest - <<: *publish-refs - needs: - - job: build-linux-stable - artifacts: true - variables: - GIT_STRATEGY: none - BUCKET: "releases.parity.io" - PREFIX: "cumulus/${ARCH}-${DOCKER_OS}" - script: - - echo "___Publishing a binary with debug assertions!___" - - echo "___VERSION = $(cat ./artifacts/VERSION) ___" - - aws s3 sync ./artifacts/ s3://${BUCKET}/${PREFIX}/$(cat ./artifacts/VERSION)/ - - echo "___Updating objects in latest path___" - - aws s3 sync s3://${BUCKET}/${PREFIX}/$(cat ./artifacts/VERSION)/ s3://${BUCKET}/${PREFIX}/latest/ - after_script: - - aws s3 ls s3://${BUCKET}/${PREFIX}/latest/ - --recursive --human-readable --summarize - -#### stage: benchmarks -# Work only on release-parachains-v* branches - -benchmarks-build: - stage: benchmarks-build - <<: *docker-env - <<: *collect-artifacts - <<: *benchmarks-manual-refs - script: - - time cargo build --profile production --locked --features runtime-benchmarks - - mkdir -p artifacts - - cp target/production/polkadot-parachain ./artifacts/ - -.git-commit-push: &git-commit-push - - git status - # Set git config - - rm -rf .git/config - - git config --global user.email "${GITHUB_EMAIL}" - - git config --global user.name "${GITHUB_USER}" - - git config remote.origin.url "https://${GITHUB_USER}:${GITHUB_TOKEN}@github.com/paritytech/${CI_PROJECT_NAME}.git" - - git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*" - # push results to github - - git checkout -b $BRANCHNAME - - git add parachains/* - - git commit -m "[benchmarks] pr with weights" - - git push origin $BRANCHNAME - -benchmarks-assets: - stage: benchmarks-run - before_script: - - *rust-info-script - <<: *collect-artifacts - <<: *benchmarks-refs - timeout: 1d - script: - - ./scripts/benchmarks-ci.sh assets statemine ./artifacts - - ./scripts/benchmarks-ci.sh assets statemint ./artifacts - - ./scripts/benchmarks-ci.sh assets westmint ./artifacts - - export CURRENT_TIME=$(date '+%s') - - export BRANCHNAME="weights-statemint-${CI_COMMIT_BRANCH}-${CURRENT_TIME}" - - *git-commit-push - # create PR to release-parachains-v* branch - - curl -u ${GITHUB_USER}:${GITHUB_TOKEN} - -d '{"title":"[benchmarks] Update weights for statemine/t","body":"This PR is generated automatically by CI. (Once merged please backport to master and node release branch.)","head":"'${BRANCHNAME}'","base":"'${CI_COMMIT_BRANCH}'"}' - -X POST https://api.github.com/repos/paritytech/${CI_PROJECT_NAME}/pulls - after_script: - - rm -rf .git/config - tags: - - weights - -benchmarks-collectives: - stage: benchmarks-run - before_script: - - *rust-info-script - <<: *collect-artifacts - <<: *benchmarks-refs - script: - - ./scripts/benchmarks-ci.sh collectives collectives-polkadot ./artifacts - git status - - export CURRENT_TIME=$(date '+%s') - - export BRANCHNAME="weights-collectives-${CI_COMMIT_BRANCH}-${CURRENT_TIME}" - - *git-commit-push - # create PR - - curl -u ${GITHUB_USER}:${GITHUB_TOKEN} - -d '{"title":"[benchmarks] Update weights for collectives","body":"This PR is generated automatically by CI.","head":"'$BRANCHNAME'","base":"'${CI_COMMIT_BRANCH}'"}' - -X POST https://api.github.com/repos/paritytech/${CI_PROJECT_NAME}/pulls - after_script: + # Set git config - rm -rf .git/config - tags: - - weights + - git config --global user.email "${GITHUB_EMAIL}" + - git config --global user.name "${GITHUB_USER}" + - git config remote.origin.url "https://${GITHUB_USER}:${GITHUB_TOKEN}@github.com/paritytech/${CI_PROJECT_NAME}.git" + - git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*" + # push results to github + - git checkout -b $BRANCHNAME + - git add parachains/* + - git commit -m "[benchmarks] pr with weights" + - git push origin $BRANCHNAME -publish-benchmarks-assets-s3: &publish-benchmarks - stage: publish - <<: *kubernetes-env - image: paritytech/awscli:latest - <<: *benchmarks-refs - needs: - - job: benchmarks-assets - artifacts: true - variables: - GIT_STRATEGY: none - BUCKET: "releases.parity.io" - PREFIX: "cumulus/$CI_COMMIT_REF_NAME/benchmarks" - script: - - echo "___Removing binary from artifacts___" - - rm -f ./artifacts/polkadot-parachain - - echo "___Publishing benchmark results___" - - aws s3 sync ./artifacts/ s3://${BUCKET}/${PREFIX}/ - after_script: - - aws s3 ls s3://${BUCKET}/${PREFIX}/ --recursive --human-readable --summarize - -publish-benchmarks-collectives-s3: - <<: *publish-benchmarks - needs: - - job: benchmarks-collectives - artifacts: true - -# Ref: https://github.com/paritytech/opstooling/issues/111 -update-parachain-template: - stage: publish - extends: .kubernetes-env - rules: - - if: $CI_COMMIT_REF_NAME =~ /^polkadot-v[0-9]+\.[0-9]+.*$/ # i.e. polkadot-v1.0.99, polkadot-v2.1rc1 - script: - - git clone --depth=1 --branch="$PIPELINE_SCRIPTS_TAG" https://github.com/paritytech/pipeline-scripts - - ./pipeline-scripts/update_substrate_template.sh - --repo-name "substrate-parachain-template" - --template-path "parachain-template" - --github-api-token "$GITHUB_TOKEN" - --polkadot-branch "$CI_COMMIT_REF_NAME" - -#### stage: integration-test - -zombienet-0001-sync_blocks_from_tip_without_connected_collator: - stage: integration-test - image: "${ZOMBIENET_IMAGE}" - <<: *zombienet-refs - needs: - - job: build-push-image-test-parachain - variables: - POLKADOT_IMAGE: "docker.io/paritypr/polkadot-debug:master" - GH_DIR: "https://github.com/paritytech/cumulus/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests" - COL_IMAGE: "docker.io/paritypr/test-parachain:${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHORT_SHA}" - before_script: - - echo "Zombie-net Tests Config" - - echo "${ZOMBIENET_IMAGE}" - - echo "${RELAY_IMAGE}" - - echo "${COL_IMAGE}" - - echo "${GH_DIR}" - - export DEBUG=zombie - - export RELAY_IMAGE=${POLKADOT_IMAGE} - - export COL_IMAGE=${COL_IMAGE} - script: - - /home/nonroot/zombie-net/scripts/ci/run-test-env-manager.sh - --github-remote-dir="${GH_DIR}" - --concurrency=1 - --test="0001-sync_blocks_from_tip_without_connected_collator.feature" - allow_failure: true - retry: 2 - tags: - - zombienet-polkadot-integration-test - -zombienet-0002-pov_recovery: - stage: integration-test - image: "${ZOMBIENET_IMAGE}" - <<: *zombienet-refs - needs: - - job: build-push-image-test-parachain - variables: - POLKADOT_IMAGE: "docker.io/paritypr/polkadot-debug:master" - GH_DIR: "https://github.com/paritytech/cumulus/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests" - COL_IMAGE: "docker.io/paritypr/test-parachain:${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHORT_SHA}" - before_script: - - echo "Zombie-net Tests Config" - - echo "${ZOMBIENET_IMAGE}" - - echo "${RELAY_IMAGE}" - - echo "${COL_IMAGE}" - - echo "${GH_DIR}" - - export DEBUG=zombie - - export RELAY_IMAGE=${POLKADOT_IMAGE} - - export COL_IMAGE=${COL_IMAGE} - script: - - /home/nonroot/zombie-net/scripts/ci/run-test-env-manager.sh - --github-remote-dir="${GH_DIR}" - --concurrency=1 - --test="0002-pov_recovery.feature" - allow_failure: true - retry: 2 - tags: - - zombienet-polkadot-integration-test - -zombienet-0003-full_node_catching_up: - stage: integration-test - image: "${ZOMBIENET_IMAGE}" - <<: *zombienet-refs - needs: - - job: build-push-image-test-parachain - variables: - POLKADOT_IMAGE: "docker.io/paritypr/polkadot-debug:master" - GH_DIR: "https://github.com/paritytech/cumulus/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests" - COL_IMAGE: "docker.io/paritypr/test-parachain:${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHORT_SHA}" - before_script: - - echo "Zombie-net Tests Config" - - echo "${ZOMBIENET_IMAGE}" - - echo "${RELAY_IMAGE}" - - echo "${COL_IMAGE}" - - echo "${GH_DIR}" - - export DEBUG=zombie - - export RELAY_IMAGE=${POLKADOT_IMAGE} - - export COL_IMAGE=${COL_IMAGE} - script: - - /home/nonroot/zombie-net/scripts/ci/run-test-env-manager.sh - --github-remote-dir="${GH_DIR}" - --concurrency=1 - --test="0003-full_node_catching_up.feature" - allow_failure: true - retry: 2 - tags: - - zombienet-polkadot-integration-test - -zombienet-0004-runtime_upgrade: - stage: integration-test - image: "${ZOMBIENET_IMAGE}" - <<: *zombienet-refs - needs: - - job: build-push-image-test-parachain - - job: build-test-parachain - artifacts: true - variables: - POLKADOT_IMAGE: "docker.io/paritypr/polkadot-debug:master" - GH_DIR: "https://github.com/paritytech/cumulus/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests" - COL_IMAGE: "docker.io/paritypr/test-parachain:${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHORT_SHA}" - before_script: - - ls -ltr * - - cp ./artifacts/zombienet/wasm_binary_spec_version_incremented.rs.compact.compressed.wasm /tmp/ - - ls /tmp - - echo "Zombie-net Tests Config" - - echo "${ZOMBIENET_IMAGE}" - - echo "${RELAY_IMAGE}" - - echo "${COL_IMAGE}" - - echo "${GH_DIR}" - - export DEBUG=zombie - - export RELAY_IMAGE=${POLKADOT_IMAGE} - - export COL_IMAGE=${COL_IMAGE} - script: - - /home/nonroot/zombie-net/scripts/ci/run-test-env-manager.sh - --github-remote-dir="${GH_DIR}" - --concurrency=1 - --test="0004-runtime_upgrade.feature" - allow_failure: true - retry: 2 - tags: - - zombienet-polkadot-integration-test - -zombienet-0005-migrate_solo_to_para: - stage: integration-test - image: "${ZOMBIENET_IMAGE}" - <<: *zombienet-refs - needs: - - job: build-push-image-test-parachain - - job: build-test-parachain - artifacts: true - variables: - POLKADOT_IMAGE: "docker.io/paritypr/polkadot-debug:master" - GH_DIR: "https://github.com/paritytech/cumulus/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests" - COL_IMAGE: "docker.io/paritypr/test-parachain:${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHORT_SHA}" - before_script: - - ls -ltr * - - echo "Zombie-net Tests Config" - - echo "${ZOMBIENET_IMAGE}" - - echo "${RELAY_IMAGE}" - - echo "${COL_IMAGE}" - - echo "${GH_DIR}" - - export DEBUG=zombie - - export RELAY_IMAGE=${POLKADOT_IMAGE} - - export COL_IMAGE=${COL_IMAGE} - script: - - /home/nonroot/zombie-net/scripts/ci/run-test-env-manager.sh - --github-remote-dir="${GH_DIR}" - --concurrency=1 - --test="0005-migrate_solo_to_para.feature" - allow_failure: true - retry: 2 - tags: - - zombienet-polkadot-integration-test +include: + # test jobs + - scripts/ci/gitlab/pipeline/test.yml + # # build jobs + - scripts/ci/gitlab/pipeline/build.yml + # # benchmarks jobs + - scripts/ci/gitlab/pipeline/benchmarks.yml + # # publish jobs + - scripts/ci/gitlab/pipeline/publish.yml + # zombienet jobs + - scripts/ci/gitlab/pipeline/zombienet.yml 0006-rpc_collator_builds_blocks: stage: integration-test @@ -669,7 +172,7 @@ zombienet-0005-migrate_solo_to_para: # This job cancels the whole pipeline if any of provided jobs fail. # In a DAG, every jobs chain is executed independently of others. The `fail_fast` principle suggests # to fail the pipeline as soon as possible to shorten the feedback loop. -.cancel-pipeline: +cancel-pipeline: stage: .post needs: - job: test-linux-stable diff --git a/scripts/ci/gitlab/pipeline/benchmarks.yml b/scripts/ci/gitlab/pipeline/benchmarks.yml new file mode 100644 index 0000000000..03aedd0396 --- /dev/null +++ b/scripts/ci/gitlab/pipeline/benchmarks.yml @@ -0,0 +1,61 @@ +# This file is part of .gitlab-ci.yml +# Here are all jobs that are executed during "benchmarks" stage +# Work only on release-parachains-v* branches + +benchmarks-build: + stage: benchmarks-build + extends: + - .docker-env + - .collect-artifacts + - .benchmarks-manual-refs + script: + - time cargo build --profile production --locked --features runtime-benchmarks + - mkdir -p artifacts + - cp target/production/polkadot-parachain ./artifacts/ + +benchmarks-assets: + stage: benchmarks-run + extends: + - .collect-artifacts + - .benchmarks-refs + before_script: + - !reference [.docker-env, before_script] + timeout: 1d + script: + - ./scripts/benchmarks-ci.sh assets statemine ./artifacts + - ./scripts/benchmarks-ci.sh assets statemint ./artifacts + - ./scripts/benchmarks-ci.sh assets westmint ./artifacts + - export CURRENT_TIME=$(date '+%s') + - export BRANCHNAME="weights-statemint-${CI_COMMIT_BRANCH}-${CURRENT_TIME}" + - !reference [.git-commit-push, script] + # create PR to release-parachains-v* branch + - curl -u ${GITHUB_USER}:${GITHUB_TOKEN} + -d '{"title":"[benchmarks] Update weights for statemine/t","body":"This PR is generated automatically by CI. (Once merged please backport to master and node release branch.)","head":"'${BRANCHNAME}'","base":"'${CI_COMMIT_BRANCH}'"}' + -X POST https://api.github.com/repos/paritytech/${CI_PROJECT_NAME}/pulls + after_script: + - rm -rf .git/config + tags: + - weights + +benchmarks-collectives: + stage: benchmarks-run + extends: + - .collect-artifacts + - .benchmarks-refs + before_script: + - !reference [.docker-env, before_script] + script: + - ./scripts/benchmarks-ci.sh collectives collectives-polkadot ./artifacts + - git status + - export CURRENT_TIME=$(date '+%s') + - export BRANCHNAME="weights-collectives-${CI_COMMIT_BRANCH}-${CURRENT_TIME}" + - !reference [.git-commit-push, script] + # create PR + - curl -u ${GITHUB_USER}:${GITHUB_TOKEN} + -d '{"title":"[benchmarks] Update weights for collectives","body":"This PR is generated automatically by CI.","head":"'$BRANCHNAME'","base":"'${CI_COMMIT_BRANCH}'"}' + -X POST https://api.github.com/repos/paritytech/${CI_PROJECT_NAME}/pulls + after_script: + - rm -rf .git/config + tags: + - weights + diff --git a/scripts/ci/gitlab/pipeline/build.yml b/scripts/ci/gitlab/pipeline/build.yml new file mode 100644 index 0000000000..86081e6a46 --- /dev/null +++ b/scripts/ci/gitlab/pipeline/build.yml @@ -0,0 +1,113 @@ +# This file is part of .gitlab-ci.yml +# Here are all jobs that are executed during "build" stage + +build-linux-stable: + stage: build + extends: + - .docker-env + - .common-refs + - .collect-artifacts + variables: + # Enable debug assertions since we are running optimized builds for testing + # but still want to have debug assertions. + RUSTFLAGS: "-Cdebug-assertions=y -Dwarnings" + # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs + needs: + - job: check-rustdoc + artifacts: false + script: + - echo "___Building a binary, please refrain from using it in production since it goes with the debug assertions.___" + - time cargo build --release --locked --bin polkadot-parachain + - echo "___Packing the artifacts___" + - mkdir -p ./artifacts + - mv ./target/release/polkadot-parachain ./artifacts/. + - echo "___The VERSION is either a tag name or the curent branch if triggered not by a tag___" + - echo ${CI_COMMIT_REF_NAME} | tee ./artifacts/VERSION + +build-test-parachain: + stage: build + extends: + - .docker-env + - .common-refs + - .collect-artifacts + variables: + # Enable debug assertions since we are running optimized builds for testing + # but still want to have debug assertions. + RUSTFLAGS: "-Cdebug-assertions=y -Dwarnings" + # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs + needs: + - job: check-rustdoc + artifacts: false + script: + - echo "___Building a binary, please refrain from using it in production since it goes with the debug assertions.___" + - time cargo +nightly build --release --locked --bin test-parachain + - echo "___Packing the artifacts___" + - mkdir -p ./artifacts + - mv ./target/release/test-parachain ./artifacts/. + - mkdir -p ./artifacts/zombienet + - mv ./target/release/wbuild/cumulus-test-runtime/wasm_binary_spec_version_incremented.rs.compact.compressed.wasm ./artifacts/zombienet/. + +# build runtime only if files in $RUNTIME_PATH/$RUNTIME_NAME were changed +.build-runtime-template: &build-runtime-template + stage: build + extends: + - .docker-env + - .pr-refs + # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs + needs: + - job: check-rustdoc + artifacts: false + variables: + RUNTIME_PATH: "parachains/runtimes/assets" + script: + - cd ${RUNTIME_PATH} + - for directory in $(echo */); do + echo "_____Running cargo check for ${directory} ______"; + cd ${directory}; + pwd; + SKIP_WASM_BUILD=1 cargo check; + cd ..; + done + +# DAG: build-runtime-assets -> build-runtime-collectives -> build-runtime-contracts +# DAG: build-runtime-assets ->build-runtime-starters -> build-runtime-testing +build-runtime-assets: + <<: *build-runtime-template + variables: + RUNTIME_PATH: "parachains/runtimes/assets" + +build-runtime-collectives: + <<: *build-runtime-template + variables: + RUNTIME_PATH: "parachains/runtimes/collectives" + # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs + needs: + - job: build-runtime-assets + artifacts: false + +build-runtime-contracts: + <<: *build-runtime-template + variables: + RUNTIME_PATH: "parachains/runtimes/contracts" + # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs + needs: + - job: build-runtime-collectives + artifacts: false + +build-runtime-starters: + <<: *build-runtime-template + variables: + RUNTIME_PATH: "parachains/runtimes/starters" + # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs + needs: + - job: build-runtime-assets + artifacts: false + +build-runtime-testing: + <<: *build-runtime-template + variables: + RUNTIME_PATH: "parachains/runtimes/testing" + # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs + needs: + - job: build-runtime-starters + artifacts: false diff --git a/scripts/ci/gitlab/pipeline/integration_tests.yml b/scripts/ci/gitlab/pipeline/integration_tests.yml new file mode 100644 index 0000000000..a884361aa7 --- /dev/null +++ b/scripts/ci/gitlab/pipeline/integration_tests.yml @@ -0,0 +1,2 @@ +# This file is part of .gitlab-ci.yml +# Here are all jobs that are executed during "integration_stage" stage diff --git a/scripts/ci/gitlab/pipeline/publish.yml b/scripts/ci/gitlab/pipeline/publish.yml new file mode 100644 index 0000000000..5773bc2b06 --- /dev/null +++ b/scripts/ci/gitlab/pipeline/publish.yml @@ -0,0 +1,117 @@ +# This file is part of .gitlab-ci.yml +# Here are all jobs that are executed during "publish" stage + +.build-push-image: + image: quay.io/buildah/stable + variables: + DOCKERFILE: "" # docker/path-to.Dockerfile + IMAGE_NAME: "" # docker.io/paritypr/image_name + VERSION: "${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHORT_SHA}" + script: + - test "$PARITYPR_USER" -a "$PARITYPR_PASS" || + ( echo "no docker credentials provided"; exit 1 ) + - buildah bud + --format=docker + --build-arg VCS_REF="${CI_COMMIT_SHA}" + --build-arg BUILD_DATE="$(date -u '+%Y-%m-%dT%H:%M:%SZ')" + --build-arg IMAGE_NAME="${IMAGE_NAME}" + --tag "$IMAGE_NAME:$VERSION" + --file ${DOCKERFILE} . + - echo "$PARITYPR_PASS" | + buildah login --username "$PARITYPR_USER" --password-stdin docker.io + - buildah info + - buildah push --format=v2s2 "$IMAGE_NAME:$VERSION" + after_script: + - buildah logout --all + +build-push-image-polkadot-parachain-debug: + stage: publish + extends: + - .kubernetes-env + - .common-refs + - .build-push-image + needs: + - job: build-linux-stable + artifacts: true + variables: + DOCKERFILE: "docker/polkadot-parachain-debug_unsigned_injected.Dockerfile" + IMAGE_NAME: "docker.io/paritypr/polkadot-parachain-debug" + VERSION: "${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHORT_SHA}" + +build-push-image-test-parachain: + stage: publish + extends: + - .kubernetes-env + - .common-refs + - .build-push-image + needs: + - job: build-test-parachain + artifacts: true + variables: + DOCKERFILE: "docker/test-parachain_injected.Dockerfile" + IMAGE_NAME: "docker.io/paritypr/test-parachain" + VERSION: "${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHORT_SHA}" + +publish-s3: + stage: publish + extends: + - .kubernetes-env + - .publish-refs + image: paritytech/awscli:latest + needs: + - job: build-linux-stable + artifacts: true + variables: + GIT_STRATEGY: none + BUCKET: "releases.parity.io" + PREFIX: "cumulus/${ARCH}-${DOCKER_OS}" + script: + - echo "___Publishing a binary with debug assertions!___" + - echo "___VERSION = $(cat ./artifacts/VERSION) ___" + - aws s3 sync ./artifacts/ s3://${BUCKET}/${PREFIX}/$(cat ./artifacts/VERSION)/ + - echo "___Updating objects in latest path___" + - aws s3 sync s3://${BUCKET}/${PREFIX}/$(cat ./artifacts/VERSION)/ s3://${BUCKET}/${PREFIX}/latest/ + after_script: + - aws s3 ls s3://${BUCKET}/${PREFIX}/latest/ + --recursive --human-readable --summarize + +publish-benchmarks-assets-s3: &publish-benchmarks + stage: publish + extends: + - .kubernetes-env + - .benchmarks-refs + image: paritytech/awscli:latest + needs: + - job: benchmarks-assets + artifacts: true + variables: + GIT_STRATEGY: none + BUCKET: "releases.parity.io" + PREFIX: "cumulus/$CI_COMMIT_REF_NAME/benchmarks" + script: + - echo "___Removing binary from artifacts___" + - rm -f ./artifacts/polkadot-parachain + - echo "___Publishing benchmark results___" + - aws s3 sync ./artifacts/ s3://${BUCKET}/${PREFIX}/ + after_script: + - aws s3 ls s3://${BUCKET}/${PREFIX}/ --recursive --human-readable --summarize + +publish-benchmarks-collectives-s3: + <<: *publish-benchmarks + needs: + - job: benchmarks-collectives + artifacts: true + +# Ref: https://github.com/paritytech/opstooling/issues/111 +update-parachain-template: + stage: publish + extends: .kubernetes-env + rules: + - if: $CI_COMMIT_REF_NAME =~ /^polkadot-v[0-9]+\.[0-9]+.*$/ # i.e. polkadot-v1.0.99, polkadot-v2.1rc1 + script: + - git clone --depth=1 --branch="$PIPELINE_SCRIPTS_TAG" https://github.com/paritytech/pipeline-scripts + - ./pipeline-scripts/update_substrate_template.sh + --repo-name "substrate-parachain-template" + --template-path "parachain-template" + --github-api-token "$GITHUB_TOKEN" + --polkadot-branch "$CI_COMMIT_REF_NAME" diff --git a/scripts/ci/gitlab/pipeline/test.yml b/scripts/ci/gitlab/pipeline/test.yml new file mode 100644 index 0000000000..0db2bb554b --- /dev/null +++ b/scripts/ci/gitlab/pipeline/test.yml @@ -0,0 +1,79 @@ +# This file is part of .gitlab-ci.yml +# Here are all jobs that are executed during "test" stage + +test-linux-stable: + stage: test + extends: + - .docker-env + - .common-refs + - .pipeline-stopper-artifacts + before_script: + - !reference [.docker-env, before_script] + - !reference [.pipeline-stopper-vars, before_script] + variables: + # Enable debug assertions since we are running optimized builds for testing + # but still want to have debug assertions. + RUSTFLAGS: "-Cdebug-assertions=y -Dwarnings" + script: + - time cargo nextest run --all --release --locked --run-ignored all + +test-doc: + stage: test + extends: + - .docker-env + - .common-refs + variables: + # Enable debug assertions since we are running optimized builds for testing + # but still want to have debug assertions. + RUSTFLAGS: "-Cdebug-assertions=y -Dwarnings" + script: + - time cargo test --doc + +check-runtime-benchmarks: + stage: test + extends: + - .docker-env + - .common-refs + script: + # Check that the node will compile with `runtime-benchmarks` feature flag. + - time cargo check --all --features runtime-benchmarks + # Check that parachain-template will compile with `runtime-benchmarks` feature flag. + - time cargo check -p parachain-template-node --features runtime-benchmarks + +cargo-check-try-runtime: + stage: test + extends: + - .docker-env + - .common-refs + # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs + needs: + - job: check-runtime-benchmarks + artifacts: false + script: + # Check that the node will compile with `try-runtime` feature flag. + - time cargo check --all --features try-runtime + # Check that parachain-template will compile with `try-runtime` feature flag. + - time cargo check -p parachain-template-node --features try-runtime + +check-rustdoc: + stage: test + extends: + - .docker-env + - .common-refs + variables: + SKIP_WASM_BUILD: 1 + RUSTDOCFLAGS: "-Dwarnings" + script: + - time cargo +nightly doc --workspace --all-features --verbose --no-deps + +cargo-check-benches: + stage: test + extends: + - .docker-env + - .common-refs + # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs + needs: + - job: check-rustdoc + artifacts: false + script: + - time cargo check --all --benches diff --git a/scripts/ci/gitlab/pipeline/zombienet.yml b/scripts/ci/gitlab/pipeline/zombienet.yml new file mode 100644 index 0000000000..fcd0a9b669 --- /dev/null +++ b/scripts/ci/gitlab/pipeline/zombienet.yml @@ -0,0 +1,101 @@ +# This file is part of .gitlab-ci.yml +# Here are all jobs that are executed during "zombienet" stage + +.zombienet-before-script: + before_script: + - echo "Zombie-net Tests Config" + - echo "${ZOMBIENET_IMAGE}" + - echo "${RELAY_IMAGE}" + - echo "${COL_IMAGE}" + - echo "${GH_DIR}" + - export DEBUG=zombie + - export RELAY_IMAGE=${POLKADOT_IMAGE} + - export COL_IMAGE=${COL_IMAGE} + +# common settings for all zombienet jobs +.zombienet-common: + stage: zombienet + image: "${ZOMBIENET_IMAGE}" + needs: + - job: build-push-image-test-parachain + artifacts: true + variables: + POLKADOT_IMAGE: "docker.io/paritypr/polkadot-debug:master" + GH_DIR: "https://github.com/paritytech/cumulus/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests" + COL_IMAGE: "docker.io/paritypr/test-parachain:${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHORT_SHA}" + allow_failure: true + retry: 2 + tags: + - zombienet-polkadot-integration-test + +zombienet-0001-sync_blocks_from_tip_without_connected_collator: + extends: + - .zombienet-common + - .zombienet-refs + - .zombienet-before-script + script: + - /home/nonroot/zombie-net/scripts/ci/run-test-env-manager.sh + --github-remote-dir="${GH_DIR}" + --concurrency=1 + --test="0001-sync_blocks_from_tip_without_connected_collator.feature" + +zombienet-0002-pov_recovery: + extends: + - .zombienet-common + - .zombienet-refs + - .zombienet-before-script + script: + - /home/nonroot/zombie-net/scripts/ci/run-test-env-manager.sh + --github-remote-dir="${GH_DIR}" + --concurrency=1 + --test="0002-pov_recovery.feature" + +zombienet-0003-full_node_catching_up: + extends: + - .zombienet-common + - .zombienet-refs + - .zombienet-before-script + script: + - /home/nonroot/zombie-net/scripts/ci/run-test-env-manager.sh + --github-remote-dir="${GH_DIR}" + --concurrency=1 + --test="0003-full_node_catching_up.feature" + +zombienet-0004-runtime_upgrade: + extends: + - .zombienet-common + - .zombienet-refs + - .zombienet-before-script + needs: + - !reference [.zombienet-common, needs] + - job: build-test-parachain + artifacts: true + before_script: + - ls -ltr * + - cp ./artifacts/zombienet/wasm_binary_spec_version_incremented.rs.compact.compressed.wasm /tmp/ + - ls /tmp + - !reference [.zombienet-before-script, before_script] + script: + - /home/nonroot/zombie-net/scripts/ci/run-test-env-manager.sh + --github-remote-dir="${GH_DIR}" + --concurrency=1 + --test="0004-runtime_upgrade.feature" + +zombienet-0005-migrate_solo_to_para: + extends: + - .zombienet-common + - .zombienet-refs + - .zombienet-before-script + needs: + - !reference [.zombienet-common, needs] + - job: build-test-parachain + artifacts: true + before_script: + - ls -ltr * + - !reference [.zombienet-before-script, before_script] + script: + - /home/nonroot/zombie-net/scripts/ci/run-test-env-manager.sh + --github-remote-dir="${GH_DIR}" + --concurrency=1 + --test="0005-migrate_solo_to_para.feature" + From 43bec3623b5a769a4347948af768121c23876678 Mon Sep 17 00:00:00 2001 From: Alexander Samusev <41779041+alvicsam@users.noreply.github.com> Date: Thu, 20 Oct 2022 11:58:46 +0200 Subject: [PATCH 31/48] [ci] Fix broken ci, move zombienet job (#1785) --- .gitlab-ci.yml | 29 ------------------------ scripts/ci/gitlab/pipeline/zombienet.yml | 10 ++++++++ 2 files changed, 10 insertions(+), 29 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 933c0eb196..e2a58c21c6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -138,35 +138,6 @@ include: # zombienet jobs - scripts/ci/gitlab/pipeline/zombienet.yml -0006-rpc_collator_builds_blocks: - stage: integration-test - image: "${ZOMBIENET_IMAGE}" - <<: *zombienet-refs - needs: - - job: build-push-image-test-parachain - variables: - POLKADOT_IMAGE: "docker.io/paritypr/polkadot-debug:master" - GH_DIR: "https://github.com/paritytech/cumulus/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests" - COL_IMAGE: "docker.io/paritypr/test-parachain:${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHORT_SHA}" - before_script: - - echo "Zombie-net Tests Config" - - echo "${ZOMBIENET_IMAGE}" - - echo "${RELAY_IMAGE}" - - echo "${COL_IMAGE}" - - echo "${GH_DIR}" - - export DEBUG=zombie - - export RELAY_IMAGE=${POLKADOT_IMAGE} - - export COL_IMAGE=${COL_IMAGE} - script: - - /home/nonroot/zombie-net/scripts/ci/run-test-env-manager.sh - --github-remote-dir="${GH_DIR}" - --concurrency=1 - --test="0006-rpc_collator_builds_blocks.feature" - allow_failure: true - retry: 2 - tags: - - zombienet-polkadot-integration-test - #### stage: .post # This job cancels the whole pipeline if any of provided jobs fail. diff --git a/scripts/ci/gitlab/pipeline/zombienet.yml b/scripts/ci/gitlab/pipeline/zombienet.yml index fcd0a9b669..4682af16ee 100644 --- a/scripts/ci/gitlab/pipeline/zombienet.yml +++ b/scripts/ci/gitlab/pipeline/zombienet.yml @@ -99,3 +99,13 @@ zombienet-0005-migrate_solo_to_para: --concurrency=1 --test="0005-migrate_solo_to_para.feature" +zombienet-0006-rpc_collator_builds_blocks: + extends: + - .zombienet-common + - .zombienet-refs + - .zombienet-before-script + script: + - /home/nonroot/zombie-net/scripts/ci/run-test-env-manager.sh + --github-remote-dir="${GH_DIR}" + --concurrency=1 + --test="0006-rpc_collator_builds_blocks.feature" From 121998161026b22d8f1284e42d899f0d6ed7b481 Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Thu, 20 Oct 2022 15:17:36 +0200 Subject: [PATCH 32/48] Co #12341: Use `try-runtime` feature (#1759) * Add try-runtime feature Signed-off-by: Oliver Tale-Yazdi * More feature gates Signed-off-by: Oliver Tale-Yazdi * Add dummy command Signed-off-by: Oliver Tale-Yazdi * update lockfile for {"polkadot", "substrate"} * Fix code * Remove unused import Signed-off-by: Oliver Tale-Yazdi * Imports... Signed-off-by: Oliver Tale-Yazdi * fmt Signed-off-by: Oliver Tale-Yazdi * fmt Signed-off-by: Oliver Tale-Yazdi Signed-off-by: Oliver Tale-Yazdi Co-authored-by: parity-processbot <> --- Cargo.lock | 521 +++++++++--------- parachain-template/node/Cargo.toml | 8 +- parachain-template/node/src/cli.rs | 5 + parachain-template/node/src/command.rs | 32 +- parachain-template/runtime/Cargo.toml | 2 +- .../runtimes/assets/statemine/Cargo.toml | 2 +- .../runtimes/assets/statemint/Cargo.toml | 2 +- .../runtimes/assets/westmint/Cargo.toml | 2 +- .../collectives-polkadot/Cargo.toml | 2 +- .../contracts/contracts-rococo/Cargo.toml | 2 +- parachains/runtimes/starters/shell/Cargo.toml | 2 +- parachains/runtimes/testing/penpal/Cargo.toml | 2 +- polkadot-parachain/Cargo.toml | 3 +- polkadot-parachain/src/cli.rs | 5 + polkadot-parachain/src/command.rs | 73 +-- 15 files changed, 345 insertions(+), 318 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8d1c5da8bc..2f3d1eb05b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "beefy-primitives", "sp-api", @@ -536,7 +536,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "parity-scale-codec", "scale-info", @@ -2802,7 +2802,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "parity-scale-codec", ] @@ -2825,7 +2825,7 @@ checksum = "85dcb89d2b10c5f6133de2efd8c11959ce9dbb46a2f7a4cab208c4eeda6ce1ab" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-support", "frame-system", @@ -2848,7 +2848,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "Inflector", "array-bytes", @@ -2899,7 +2899,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2910,7 +2910,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2926,7 +2926,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-support", "frame-system", @@ -2955,7 +2955,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "bitflags", "frame-metadata", @@ -2987,7 +2987,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "Inflector", "cfg-expr", @@ -3001,7 +3001,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3013,7 +3013,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "proc-macro2", "quote", @@ -3023,7 +3023,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-support", "log", @@ -3041,7 +3041,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -3056,7 +3056,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "parity-scale-codec", "sp-api", @@ -3065,7 +3065,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-support", "parity-scale-codec", @@ -3926,7 +3926,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "beefy-primitives", "bitvec", @@ -4024,7 +4024,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "frame-support", "polkadot-primitives", @@ -5248,7 +5248,7 @@ checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64" [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5269,7 +5269,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-support", "frame-system", @@ -5286,7 +5286,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5300,7 +5300,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-support", "frame-system", @@ -5316,7 +5316,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-support", "frame-system", @@ -5332,7 +5332,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-support", "frame-system", @@ -5347,7 +5347,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5371,7 +5371,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5391,7 +5391,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5406,7 +5406,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "beefy-primitives", "frame-support", @@ -5422,7 +5422,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5445,7 +5445,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5463,7 +5463,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5507,7 +5507,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5524,7 +5524,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "bitflags", "frame-benchmarking", @@ -5553,7 +5553,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "bitflags", "parity-scale-codec", @@ -5565,7 +5565,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "proc-macro2", "quote", @@ -5575,7 +5575,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5592,7 +5592,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5610,7 +5610,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5634,7 +5634,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5647,7 +5647,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5665,7 +5665,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5686,7 +5686,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5701,7 +5701,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5724,7 +5724,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5740,7 +5740,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5760,7 +5760,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5777,7 +5777,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5794,7 +5794,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5812,7 +5812,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5827,7 +5827,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5843,7 +5843,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-support", "frame-system", @@ -5860,7 +5860,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5880,7 +5880,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "parity-scale-codec", "sp-api", @@ -5890,7 +5890,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-support", "frame-system", @@ -5907,7 +5907,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5930,7 +5930,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5947,7 +5947,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5962,7 +5962,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-support", "frame-system", @@ -5976,7 +5976,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5994,7 +5994,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6009,7 +6009,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6027,7 +6027,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6043,7 +6043,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-support", "frame-system", @@ -6064,7 +6064,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6080,7 +6080,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-support", "frame-system", @@ -6094,7 +6094,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6117,7 +6117,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6128,7 +6128,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "log", "sp-arithmetic", @@ -6137,7 +6137,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-support", "frame-system", @@ -6166,7 +6166,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6184,7 +6184,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6203,7 +6203,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-support", "frame-system", @@ -6219,7 +6219,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6234,7 +6234,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6245,7 +6245,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6262,7 +6262,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6277,7 +6277,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6293,7 +6293,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6308,7 +6308,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6323,7 +6323,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "frame-support", "frame-system", @@ -6341,7 +6341,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "frame-benchmarking", "frame-support", @@ -6895,7 +6895,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -6910,7 +6910,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -6924,7 +6924,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "derive_more", "fatality", @@ -6947,7 +6947,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "fatality", "futures", @@ -6968,7 +6968,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "clap 4.0.17", "frame-benchmarking-cli", @@ -6994,7 +6994,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7035,7 +7035,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "always-assert", "bitvec", @@ -7057,7 +7057,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7070,7 +7070,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "derive_more", "fatality", @@ -7095,7 +7095,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7109,7 +7109,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "futures", "futures-timer", @@ -7129,7 +7129,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "always-assert", "async-trait", @@ -7153,7 +7153,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "futures", "parity-scale-codec", @@ -7171,7 +7171,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "bitvec", "derive_more", @@ -7200,7 +7200,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "bitvec", "futures", @@ -7220,7 +7220,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "bitvec", "fatality", @@ -7239,7 +7239,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7254,7 +7254,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "async-trait", "futures", @@ -7272,7 +7272,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7287,7 +7287,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "futures", "futures-timer", @@ -7304,7 +7304,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "fatality", "futures", @@ -7323,7 +7323,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "async-trait", "futures", @@ -7340,7 +7340,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "bitvec", "fatality", @@ -7358,7 +7358,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "always-assert", "assert_matches", @@ -7390,7 +7390,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "futures", "polkadot-node-primitives", @@ -7406,7 +7406,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "futures", "memory-lru", @@ -7422,7 +7422,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "async-std", "lazy_static", @@ -7440,7 +7440,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "bs58", "futures", @@ -7459,7 +7459,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "async-trait", "derive_more", @@ -7482,7 +7482,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "bounded-vec", "futures", @@ -7504,7 +7504,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7514,7 +7514,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "async-trait", "futures", @@ -7532,7 +7532,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "async-trait", "derive_more", @@ -7555,7 +7555,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "async-trait", "derive_more", @@ -7588,7 +7588,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "async-trait", "futures", @@ -7611,7 +7611,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "derive_more", "frame-support", @@ -7709,7 +7709,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7724,7 +7724,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "bitvec", "frame-system", @@ -7754,7 +7754,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7786,7 +7786,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "beefy-primitives", "bitvec", @@ -7875,7 +7875,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "beefy-primitives", "bitvec", @@ -7922,7 +7922,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "frame-support", "polkadot-primitives", @@ -7934,7 +7934,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "bs58", "parity-scale-codec", @@ -7946,7 +7946,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "bitflags", "bitvec", @@ -7989,7 +7989,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "async-trait", "beefy-gadget", @@ -8094,7 +8094,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8115,7 +8115,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8125,7 +8125,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8150,7 +8150,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "beefy-primitives", "bitvec", @@ -8211,7 +8211,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "frame-benchmarking", "frame-system", @@ -8790,10 +8790,9 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "env_logger 0.9.0", - "jsonrpsee", "log", "parity-scale-codec", "serde", @@ -8802,6 +8801,7 @@ dependencies = [ "sp-io", "sp-runtime", "sp-version", + "substrate-rpc-client", ] [[package]] @@ -8909,7 +8909,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -8993,7 +8993,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "frame-support", "polkadot-primitives", @@ -9154,7 +9154,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "log", "sp-core", @@ -9165,7 +9165,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "async-trait", "futures", @@ -9192,7 +9192,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "futures", "futures-timer", @@ -9215,7 +9215,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9231,7 +9231,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9248,7 +9248,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9259,7 +9259,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "array-bytes", "chrono", @@ -9299,7 +9299,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "fnv", "futures", @@ -9327,7 +9327,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "hash-db", "kvdb", @@ -9352,7 +9352,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "async-trait", "futures", @@ -9376,7 +9376,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "async-trait", "futures", @@ -9405,7 +9405,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "async-trait", "fork-tree", @@ -9447,7 +9447,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "futures", "jsonrpsee", @@ -9469,7 +9469,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9482,7 +9482,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "async-trait", "futures", @@ -9506,7 +9506,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9533,7 +9533,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "environmental", "parity-scale-codec", @@ -9549,7 +9549,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "log", "parity-scale-codec", @@ -9564,7 +9564,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9584,7 +9584,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "ahash", "array-bytes", @@ -9625,7 +9625,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "finality-grandpa", "futures", @@ -9646,7 +9646,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "ansi_term", "futures", @@ -9663,7 +9663,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "array-bytes", "async-trait", @@ -9678,7 +9678,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "array-bytes", "async-trait", @@ -9725,7 +9725,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "cid", "futures", @@ -9745,7 +9745,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "async-trait", "bitflags", @@ -9771,7 +9771,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "ahash", "futures", @@ -9789,7 +9789,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "array-bytes", "futures", @@ -9810,7 +9810,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "array-bytes", "fork-tree", @@ -9840,7 +9840,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "array-bytes", "futures", @@ -9859,7 +9859,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "array-bytes", "bytes", @@ -9889,7 +9889,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "futures", "libp2p", @@ -9902,7 +9902,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9911,7 +9911,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "futures", "hash-db", @@ -9941,7 +9941,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "futures", "jsonrpsee", @@ -9964,7 +9964,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "futures", "jsonrpsee", @@ -9977,7 +9977,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "futures", "hex", @@ -9996,7 +9996,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "async-trait", "directories", @@ -10067,7 +10067,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "log", "parity-scale-codec", @@ -10081,7 +10081,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10100,7 +10100,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "futures", "libc", @@ -10119,7 +10119,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "chrono", "futures", @@ -10137,7 +10137,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "ansi_term", "atty", @@ -10168,7 +10168,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10179,7 +10179,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "async-trait", "futures", @@ -10206,7 +10206,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "async-trait", "futures", @@ -10220,7 +10220,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "futures", "futures-timer", @@ -10638,7 +10638,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "enumn", "parity-scale-codec", @@ -10714,7 +10714,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "hash-db", "log", @@ -10732,7 +10732,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "blake2", "proc-macro-crate", @@ -10744,7 +10744,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "parity-scale-codec", "scale-info", @@ -10757,7 +10757,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "integer-sqrt", "num-traits", @@ -10772,7 +10772,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "parity-scale-codec", "scale-info", @@ -10785,7 +10785,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "async-trait", "parity-scale-codec", @@ -10797,7 +10797,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "parity-scale-codec", "sp-api", @@ -10809,7 +10809,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "futures", "log", @@ -10827,7 +10827,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "async-trait", "futures", @@ -10846,7 +10846,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "async-trait", "parity-scale-codec", @@ -10864,7 +10864,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "async-trait", "merlin", @@ -10887,7 +10887,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "parity-scale-codec", "scale-info", @@ -10901,7 +10901,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "parity-scale-codec", "scale-info", @@ -10914,7 +10914,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "array-bytes", "base58", @@ -10960,7 +10960,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "blake2", "byteorder", @@ -10974,7 +10974,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "proc-macro2", "quote", @@ -10985,7 +10985,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10994,7 +10994,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "proc-macro2", "quote", @@ -11004,7 +11004,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "environmental", "parity-scale-codec", @@ -11015,7 +11015,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "finality-grandpa", "log", @@ -11033,7 +11033,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11047,7 +11047,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "bytes", "futures", @@ -11073,7 +11073,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "lazy_static", "sp-core", @@ -11084,7 +11084,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "async-trait", "futures", @@ -11101,7 +11101,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "thiserror", "zstd", @@ -11110,7 +11110,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "log", "parity-scale-codec", @@ -11126,7 +11126,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11140,7 +11140,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "sp-api", "sp-core", @@ -11150,7 +11150,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "backtrace", "lazy_static", @@ -11160,7 +11160,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "rustc-hash", "serde", @@ -11170,7 +11170,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "either", "hash256-std-hasher", @@ -11193,7 +11193,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11211,7 +11211,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "Inflector", "proc-macro-crate", @@ -11223,7 +11223,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "log", "parity-scale-codec", @@ -11237,7 +11237,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "serde", "serde_json", @@ -11246,7 +11246,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11260,7 +11260,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11271,7 +11271,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "hash-db", "log", @@ -11293,12 +11293,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11311,7 +11311,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "log", "sp-core", @@ -11324,7 +11324,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "async-trait", "futures-timer", @@ -11340,7 +11340,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "parity-scale-codec", "sp-std", @@ -11352,7 +11352,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "sp-api", "sp-runtime", @@ -11361,7 +11361,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "async-trait", "log", @@ -11377,7 +11377,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "ahash", "hash-db", @@ -11400,7 +11400,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11417,7 +11417,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11428,7 +11428,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "impl-trait-for-tuples", "log", @@ -11441,7 +11441,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11737,7 +11737,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "platforms", ] @@ -11745,7 +11745,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11766,7 +11766,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "futures-util", "hyper", @@ -11776,10 +11776,23 @@ dependencies = [ "tokio", ] +[[package]] +name = "substrate-rpc-client" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +dependencies = [ + "async-trait", + "jsonrpsee", + "log", + "sc-rpc-api", + "serde", + "sp-runtime", +] + [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "jsonrpsee", "log", @@ -11800,7 +11813,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "array-bytes", "async-trait", @@ -11826,7 +11839,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11836,7 +11849,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11847,7 +11860,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "ansi_term", "build-helper", @@ -11955,7 +11968,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "frame-support", "polkadot-primitives", @@ -12235,7 +12248,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12246,7 +12259,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12373,11 +12386,10 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" dependencies = [ "clap 4.0.17", "frame-try-runtime", - "jsonrpsee", "log", "parity-scale-codec", "remote-externalities", @@ -12394,6 +12406,7 @@ dependencies = [ "sp-state-machine", "sp-version", "sp-weights", + "substrate-rpc-client", "zstd", ] @@ -12962,7 +12975,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "beefy-primitives", "bitvec", @@ -13052,7 +13065,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "frame-support", "polkadot-primitives", @@ -13335,7 +13348,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13349,7 +13362,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "frame-support", "frame-system", @@ -13369,7 +13382,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "frame-benchmarking", "frame-support", @@ -13387,7 +13400,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" dependencies = [ "Inflector", "proc-macro2", diff --git a/parachain-template/node/Cargo.toml b/parachain-template/node/Cargo.toml index c482ff1878..771dff54f1 100644 --- a/parachain-template/node/Cargo.toml +++ b/parachain-template/node/Cargo.toml @@ -51,7 +51,7 @@ sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "mast sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "master" } substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } -try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } # Polkadot polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master" } @@ -78,7 +78,11 @@ substrate-build-script-utils = { git = "https://github.com/paritytech/substrate" [features] default = [] runtime-benchmarks = [ + "try-runtime-cli/try-runtime", "parachain-template-runtime/runtime-benchmarks", "polkadot-cli/runtime-benchmarks", ] -try-runtime = ["parachain-template-runtime/try-runtime"] +try-runtime = [ + "try-runtime-cli/try-runtime", + "parachain-template-runtime/try-runtime" +] diff --git a/parachain-template/node/src/cli.rs b/parachain-template/node/src/cli.rs index 99bb0a96bc..1da49b3b16 100644 --- a/parachain-template/node/src/cli.rs +++ b/parachain-template/node/src/cli.rs @@ -36,7 +36,12 @@ pub enum Subcommand { Benchmark(frame_benchmarking_cli::BenchmarkCmd), /// Try some testing command against a specified runtime state. + #[cfg(feature = "try-runtime")] TryRuntime(try_runtime_cli::TryRuntimeCmd), + + /// Errors since the binary was not build with `--features try-runtime`. + #[cfg(not(feature = "try-runtime"))] + TryRuntime, } #[derive(Debug, clap::Parser)] diff --git a/parachain-template/node/src/command.rs b/parachain-template/node/src/command.rs index 837cd15abf..7301b6d570 100644 --- a/parachain-template/node/src/command.rs +++ b/parachain-template/node/src/command.rs @@ -10,10 +10,7 @@ use sc_cli::{ ChainSpec, CliConfiguration, DefaultConfigurationValues, ImportParams, KeystoreParams, NetworkParams, Result, RuntimeVersion, SharedParams, SubstrateCli, }; -use sc_service::{ - config::{BasePath, PrometheusConfig}, - TaskManager, -}; +use sc_service::config::{BasePath, PrometheusConfig}; use sp_core::hexdisplay::HexDisplay; use sp_runtime::traits::{AccountIdConversion, Block as BlockT}; @@ -231,23 +228,24 @@ pub fn run() -> Result<()> { _ => Err("Benchmarking sub-command unsupported".into()), } }, + #[cfg(feature = "try-runtime")] Some(Subcommand::TryRuntime(cmd)) => { - if cfg!(feature = "try-runtime") { - let runner = cli.create_runner(cmd)?; + let runner = cli.create_runner(cmd)?; - // grab the task manager. - let registry = &runner.config().prometheus_config.as_ref().map(|cfg| &cfg.registry); - let task_manager = - TaskManager::new(runner.config().tokio_handle.clone(), *registry) - .map_err(|e| format!("Error: {:?}", e))?; + // grab the task manager. + let registry = &runner.config().prometheus_config.as_ref().map(|cfg| &cfg.registry); + let task_manager = + sc_service::TaskManager::new(runner.config().tokio_handle.clone(), *registry) + .map_err(|e| format!("Error: {:?}", e))?; - runner.async_run(|config| { - Ok((cmd.run::(config), task_manager)) - }) - } else { - Err("Try-runtime must be enabled by `--features try-runtime`.".into()) - } + runner.async_run(|config| { + Ok((cmd.run::(config), task_manager)) + }) }, + #[cfg(not(feature = "try-runtime"))] + Some(Subcommand::TryRuntime) => Err("Try-runtime was not enabled when building the node. \ + You can enable it with `--features try-runtime`." + .into()), None => { let runner = cli.create_runner(&cli.run.normalize())?; let collator_options = cli.run.collator_options(); diff --git a/parachain-template/runtime/Cargo.toml b/parachain-template/runtime/Cargo.toml index 5e9b88e2f1..ec642e72bc 100644 --- a/parachain-template/runtime/Cargo.toml +++ b/parachain-template/runtime/Cargo.toml @@ -148,7 +148,7 @@ try-runtime = [ "cumulus-pallet-xcmp-queue/try-runtime", "frame-executive/try-runtime", "frame-system/try-runtime", - "frame-try-runtime", + "frame-try-runtime/try-runtime", "pallet-aura/try-runtime", "pallet-authorship/try-runtime", "pallet-balances/try-runtime", diff --git a/parachains/runtimes/assets/statemine/Cargo.toml b/parachains/runtimes/assets/statemine/Cargo.toml index 7c47a42a4f..6be6a7e53d 100644 --- a/parachains/runtimes/assets/statemine/Cargo.toml +++ b/parachains/runtimes/assets/statemine/Cargo.toml @@ -109,7 +109,7 @@ try-runtime = [ "cumulus-pallet-xcmp-queue/try-runtime", "frame-executive/try-runtime", "frame-system/try-runtime", - "frame-try-runtime", + "frame-try-runtime/try-runtime", "pallet-asset-tx-payment/try-runtime", "pallet-assets/try-runtime", "pallet-aura/try-runtime", diff --git a/parachains/runtimes/assets/statemint/Cargo.toml b/parachains/runtimes/assets/statemint/Cargo.toml index 127bba217a..f13f786c15 100644 --- a/parachains/runtimes/assets/statemint/Cargo.toml +++ b/parachains/runtimes/assets/statemint/Cargo.toml @@ -108,7 +108,7 @@ try-runtime = [ "cumulus-pallet-xcmp-queue/try-runtime", "frame-executive/try-runtime", "frame-system/try-runtime", - "frame-try-runtime", + "frame-try-runtime/try-runtime", "pallet-asset-tx-payment/try-runtime", "pallet-assets/try-runtime", "pallet-aura/try-runtime", diff --git a/parachains/runtimes/assets/westmint/Cargo.toml b/parachains/runtimes/assets/westmint/Cargo.toml index b8b0623115..520ab1fbc2 100644 --- a/parachains/runtimes/assets/westmint/Cargo.toml +++ b/parachains/runtimes/assets/westmint/Cargo.toml @@ -108,7 +108,7 @@ try-runtime = [ "cumulus-pallet-xcmp-queue/try-runtime", "frame-executive/try-runtime", "frame-system/try-runtime", - "frame-try-runtime", + "frame-try-runtime/try-runtime", "pallet-asset-tx-payment/try-runtime", "pallet-assets/try-runtime", "pallet-aura/try-runtime", diff --git a/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml b/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml index 4a6939b7c0..4f1f54f8ef 100644 --- a/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml +++ b/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml @@ -104,7 +104,7 @@ try-runtime = [ "cumulus-pallet-xcmp-queue/try-runtime", "frame-executive/try-runtime", "frame-system/try-runtime", - "frame-try-runtime", + "frame-try-runtime/try-runtime", "pallet-alliance/try-runtime", "pallet-aura/try-runtime", "pallet-authorship/try-runtime", diff --git a/parachains/runtimes/contracts/contracts-rococo/Cargo.toml b/parachains/runtimes/contracts/contracts-rococo/Cargo.toml index 2e6f65ceac..1a576bf4ca 100644 --- a/parachains/runtimes/contracts/contracts-rococo/Cargo.toml +++ b/parachains/runtimes/contracts/contracts-rococo/Cargo.toml @@ -157,7 +157,7 @@ try-runtime = [ "cumulus-pallet-xcmp-queue/try-runtime", "frame-executive/try-runtime", "frame-system/try-runtime", - "frame-try-runtime", + "frame-try-runtime/try-runtime", "pallet-aura/try-runtime", "pallet-authorship/try-runtime", "pallet-balances/try-runtime", diff --git a/parachains/runtimes/starters/shell/Cargo.toml b/parachains/runtimes/starters/shell/Cargo.toml index 2588990a38..d62fa52bff 100644 --- a/parachains/runtimes/starters/shell/Cargo.toml +++ b/parachains/runtimes/starters/shell/Cargo.toml @@ -68,5 +68,5 @@ std = [ ] try-runtime = [ "frame-executive/try-runtime", - "frame-try-runtime", + "frame-try-runtime/try-runtime", ] diff --git a/parachains/runtimes/testing/penpal/Cargo.toml b/parachains/runtimes/testing/penpal/Cargo.toml index 7aa20c4632..b76f9e3d6b 100644 --- a/parachains/runtimes/testing/penpal/Cargo.toml +++ b/parachains/runtimes/testing/penpal/Cargo.toml @@ -150,7 +150,7 @@ try-runtime = [ "cumulus-pallet-xcmp-queue/try-runtime", "frame-executive/try-runtime", "frame-system/try-runtime", - "frame-try-runtime", + "frame-try-runtime/try-runtime", "pallet-aura/try-runtime", "pallet-authorship/try-runtime", "pallet-balances/try-runtime", diff --git a/polkadot-parachain/Cargo.toml b/polkadot-parachain/Cargo.toml index d57894c225..4ad2bec29f 100644 --- a/polkadot-parachain/Cargo.toml +++ b/polkadot-parachain/Cargo.toml @@ -60,7 +60,7 @@ sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-serializer = { git = "https://github.com/paritytech/substrate", branch = "master" } substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } -try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" } frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "master" } pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } @@ -110,4 +110,5 @@ try-runtime = [ "statemine-runtime/try-runtime", "westmint-runtime/try-runtime", "shell-runtime/try-runtime", + "try-runtime-cli/try-runtime", ] diff --git a/polkadot-parachain/src/cli.rs b/polkadot-parachain/src/cli.rs index b5df0b8364..90460095a6 100644 --- a/polkadot-parachain/src/cli.rs +++ b/polkadot-parachain/src/cli.rs @@ -56,7 +56,12 @@ pub enum Subcommand { Benchmark(frame_benchmarking_cli::BenchmarkCmd), /// Try some testing command against a specified runtime state. + #[cfg(feature = "try-runtime")] TryRuntime(try_runtime_cli::TryRuntimeCmd), + + /// Errors since the binary was not build with `--features try-runtime`. + #[cfg(not(feature = "try-runtime"))] + TryRuntime, } #[derive(Debug, clap::Parser)] diff --git a/polkadot-parachain/src/command.rs b/polkadot-parachain/src/command.rs index fbffbc03c1..c436a98dc6 100644 --- a/polkadot-parachain/src/command.rs +++ b/polkadot-parachain/src/command.rs @@ -18,8 +18,8 @@ use crate::{ chain_spec, cli::{Cli, RelayChainCli, Subcommand}, service::{ - new_partial, Block, CollectivesPolkadotRuntimeExecutor, ShellRuntimeExecutor, - StatemineRuntimeExecutor, StatemintRuntimeExecutor, WestmintRuntimeExecutor, + new_partial, Block, CollectivesPolkadotRuntimeExecutor, StatemineRuntimeExecutor, + StatemintRuntimeExecutor, WestmintRuntimeExecutor, }, }; use codec::Encode; @@ -32,10 +32,7 @@ use sc_cli::{ ChainSpec, CliConfiguration, DefaultConfigurationValues, ImportParams, KeystoreParams, NetworkParams, Result, RuntimeVersion, SharedParams, SubstrateCli, }; -use sc_service::{ - config::{BasePath, PrometheusConfig}, - TaskManager, -}; +use sc_service::config::{BasePath, PrometheusConfig}; use sp_core::hexdisplay::HexDisplay; use sp_runtime::traits::{AccountIdConversion, Block as BlockT}; use std::{net::SocketAddr, path::PathBuf}; @@ -597,41 +594,45 @@ pub fn run() -> Result<()> { _ => Err("Benchmarking sub-command unsupported".into()), } }, + #[cfg(feature = "try-runtime")] Some(Subcommand::TryRuntime(cmd)) => { - if cfg!(feature = "try-runtime") { - // grab the task manager. - let runner = cli.create_runner(cmd)?; - let registry = &runner.config().prometheus_config.as_ref().map(|cfg| &cfg.registry); - let task_manager = - TaskManager::new(runner.config().tokio_handle.clone(), *registry) - .map_err(|e| format!("Error: {:?}", e))?; + // grab the task manager. + let runner = cli.create_runner(cmd)?; + let registry = &runner.config().prometheus_config.as_ref().map(|cfg| &cfg.registry); + let task_manager = + sc_service::TaskManager::new(runner.config().tokio_handle.clone(), *registry) + .map_err(|e| format!("Error: {:?}", e))?; - match runner.config().chain_spec.runtime() { - Runtime::Statemine => runner.async_run(|config| { - Ok((cmd.run::(config), task_manager)) + match runner.config().chain_spec.runtime() { + Runtime::Statemine => runner.async_run(|config| { + Ok((cmd.run::(config), task_manager)) + }), + Runtime::Westmint => runner.async_run(|config| { + Ok((cmd.run::(config), task_manager)) + }), + Runtime::Statemint => runner.async_run(|config| { + Ok((cmd.run::(config), task_manager)) + }), + Runtime::CollectivesPolkadot | Runtime::CollectivesWestend => + runner.async_run(|config| { + Ok(( + cmd.run::(config), + task_manager, + )) }), - Runtime::Westmint => runner.async_run(|config| { - Ok((cmd.run::(config), task_manager)) - }), - Runtime::Statemint => runner.async_run(|config| { - Ok((cmd.run::(config), task_manager)) - }), - Runtime::CollectivesPolkadot | Runtime::CollectivesWestend => - runner.async_run(|config| { - Ok(( - cmd.run::(config), - task_manager, - )) - }), - Runtime::Shell => runner.async_run(|config| { - Ok((cmd.run::(config), task_manager)) - }), - _ => Err("Chain doesn't support try-runtime".into()), - } - } else { - Err("Try-runtime must be enabled by `--features try-runtime`.".into()) + Runtime::Shell => runner.async_run(|config| { + Ok(( + cmd.run::(config), + task_manager, + )) + }), + _ => Err("Chain doesn't support try-runtime".into()), } }, + #[cfg(not(feature = "try-runtime"))] + Some(Subcommand::TryRuntime) => Err("Try-runtime was not enabled when building the node. \ + You can enable it with `--features try-runtime`." + .into()), Some(Subcommand::Key(cmd)) => Ok(cmd.run(&cli)?), None => { let runner = cli.create_runner(&cli.run.normalize())?; From c1ce9c5dab7fe0b5792735bbc3568e25cb0f4fe6 Mon Sep 17 00:00:00 2001 From: Javier Viola Date: Thu, 20 Oct 2022 11:27:22 -0300 Subject: [PATCH 33/48] bump zombienet version (#1786) --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e2a58c21c6..1389fc0802 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,7 +30,7 @@ variables: CI_IMAGE: "paritytech/ci-linux:production" DOCKER_OS: "debian:stretch" ARCH: "x86_64" - ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.2.80" + ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.2.82" .collect-artifacts: artifacts: From 304ce594a5f76f1257596989d3f6c80af9923f9c Mon Sep 17 00:00:00 2001 From: Michal Kucharczyk <1728078+michalkucharczyk@users.noreply.github.com> Date: Thu, 20 Oct 2022 17:21:40 +0200 Subject: [PATCH 34/48] BlockId removal: refactor: Finalizer (#1779) * BlockId removal: refactor: Finalizer It changes the arguments of methods of `Finalizer` trait from: block: `BlockId` to: hash: `&Block::Hash` This PR is part of BlockId::Number refactoring analysis (paritytech/substrate#11292) * update lockfile for {"polkadot", "substrate"} * update Cargo.lock * Cargo.lock update again Co-authored-by: parity-processbot <> --- Cargo.lock | 374 +++++++++--------- .../common/src/parachain_consensus.rs | 2 +- 2 files changed, 188 insertions(+), 188 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2f3d1eb05b..d87c7e6214 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "beefy-primitives", "sp-api", @@ -536,7 +536,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "parity-scale-codec", "scale-info", @@ -2802,7 +2802,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "parity-scale-codec", ] @@ -2825,7 +2825,7 @@ checksum = "85dcb89d2b10c5f6133de2efd8c11959ce9dbb46a2f7a4cab208c4eeda6ce1ab" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-support", "frame-system", @@ -2848,7 +2848,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "Inflector", "array-bytes", @@ -2899,7 +2899,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2910,7 +2910,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2926,7 +2926,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-support", "frame-system", @@ -2955,7 +2955,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "bitflags", "frame-metadata", @@ -2987,7 +2987,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "Inflector", "cfg-expr", @@ -3001,7 +3001,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3013,7 +3013,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "proc-macro2", "quote", @@ -3023,7 +3023,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-support", "log", @@ -3041,7 +3041,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -3056,7 +3056,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "parity-scale-codec", "sp-api", @@ -3065,7 +3065,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-support", "parity-scale-codec", @@ -5248,7 +5248,7 @@ checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64" [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5269,7 +5269,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-support", "frame-system", @@ -5286,7 +5286,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5300,7 +5300,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-support", "frame-system", @@ -5316,7 +5316,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-support", "frame-system", @@ -5332,7 +5332,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-support", "frame-system", @@ -5347,7 +5347,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5371,7 +5371,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5391,7 +5391,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5406,7 +5406,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "beefy-primitives", "frame-support", @@ -5422,7 +5422,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5445,7 +5445,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5463,7 +5463,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5507,7 +5507,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5524,7 +5524,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "bitflags", "frame-benchmarking", @@ -5553,7 +5553,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "bitflags", "parity-scale-codec", @@ -5565,7 +5565,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "proc-macro2", "quote", @@ -5575,7 +5575,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5592,7 +5592,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5610,7 +5610,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5634,7 +5634,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5647,7 +5647,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5665,7 +5665,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5686,7 +5686,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5701,7 +5701,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5724,7 +5724,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5740,7 +5740,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5760,7 +5760,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5777,7 +5777,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5794,7 +5794,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5812,7 +5812,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5827,7 +5827,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5843,7 +5843,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-support", "frame-system", @@ -5860,7 +5860,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5880,7 +5880,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "parity-scale-codec", "sp-api", @@ -5890,7 +5890,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-support", "frame-system", @@ -5907,7 +5907,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5930,7 +5930,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5947,7 +5947,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5962,7 +5962,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-support", "frame-system", @@ -5976,7 +5976,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -5994,7 +5994,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -6009,7 +6009,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6027,7 +6027,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -6043,7 +6043,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-support", "frame-system", @@ -6064,7 +6064,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -6080,7 +6080,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-support", "frame-system", @@ -6094,7 +6094,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6117,7 +6117,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6128,7 +6128,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "log", "sp-arithmetic", @@ -6137,7 +6137,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-support", "frame-system", @@ -6166,7 +6166,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -6184,7 +6184,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -6203,7 +6203,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-support", "frame-system", @@ -6219,7 +6219,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6234,7 +6234,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6245,7 +6245,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -6262,7 +6262,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -6277,7 +6277,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -6293,7 +6293,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -6308,7 +6308,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-benchmarking", "frame-support", @@ -8790,7 +8790,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "env_logger 0.9.0", "log", @@ -9154,7 +9154,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "log", "sp-core", @@ -9165,7 +9165,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "async-trait", "futures", @@ -9192,7 +9192,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "futures", "futures-timer", @@ -9215,7 +9215,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9231,7 +9231,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9248,7 +9248,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9259,7 +9259,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "array-bytes", "chrono", @@ -9299,7 +9299,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "fnv", "futures", @@ -9327,7 +9327,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "hash-db", "kvdb", @@ -9352,7 +9352,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "async-trait", "futures", @@ -9376,7 +9376,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "async-trait", "futures", @@ -9405,7 +9405,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "async-trait", "fork-tree", @@ -9447,7 +9447,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "futures", "jsonrpsee", @@ -9469,7 +9469,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9482,7 +9482,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "async-trait", "futures", @@ -9506,7 +9506,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9533,7 +9533,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "environmental", "parity-scale-codec", @@ -9549,7 +9549,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "log", "parity-scale-codec", @@ -9564,7 +9564,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9584,7 +9584,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "ahash", "array-bytes", @@ -9625,7 +9625,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "finality-grandpa", "futures", @@ -9646,7 +9646,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "ansi_term", "futures", @@ -9663,7 +9663,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "array-bytes", "async-trait", @@ -9678,7 +9678,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "array-bytes", "async-trait", @@ -9725,7 +9725,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "cid", "futures", @@ -9745,7 +9745,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "async-trait", "bitflags", @@ -9771,7 +9771,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "ahash", "futures", @@ -9789,7 +9789,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "array-bytes", "futures", @@ -9810,7 +9810,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "array-bytes", "fork-tree", @@ -9840,7 +9840,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "array-bytes", "futures", @@ -9859,7 +9859,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "array-bytes", "bytes", @@ -9889,7 +9889,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "futures", "libp2p", @@ -9902,7 +9902,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9911,7 +9911,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "futures", "hash-db", @@ -9941,7 +9941,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "futures", "jsonrpsee", @@ -9964,7 +9964,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "futures", "jsonrpsee", @@ -9977,7 +9977,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "futures", "hex", @@ -9996,7 +9996,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "async-trait", "directories", @@ -10067,7 +10067,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "log", "parity-scale-codec", @@ -10081,7 +10081,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10100,7 +10100,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "futures", "libc", @@ -10119,7 +10119,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "chrono", "futures", @@ -10137,7 +10137,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "ansi_term", "atty", @@ -10168,7 +10168,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10179,7 +10179,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "async-trait", "futures", @@ -10206,7 +10206,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "async-trait", "futures", @@ -10220,7 +10220,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "futures", "futures-timer", @@ -10714,7 +10714,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "hash-db", "log", @@ -10732,7 +10732,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "blake2", "proc-macro-crate", @@ -10744,7 +10744,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "parity-scale-codec", "scale-info", @@ -10757,7 +10757,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "integer-sqrt", "num-traits", @@ -10772,7 +10772,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "parity-scale-codec", "scale-info", @@ -10785,7 +10785,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "async-trait", "parity-scale-codec", @@ -10797,7 +10797,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "parity-scale-codec", "sp-api", @@ -10809,7 +10809,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "futures", "log", @@ -10827,7 +10827,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "async-trait", "futures", @@ -10846,7 +10846,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "async-trait", "parity-scale-codec", @@ -10864,7 +10864,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "async-trait", "merlin", @@ -10887,7 +10887,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "parity-scale-codec", "scale-info", @@ -10901,7 +10901,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "parity-scale-codec", "scale-info", @@ -10914,7 +10914,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "array-bytes", "base58", @@ -10960,7 +10960,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "blake2", "byteorder", @@ -10974,7 +10974,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "proc-macro2", "quote", @@ -10985,7 +10985,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10994,7 +10994,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "proc-macro2", "quote", @@ -11004,7 +11004,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "environmental", "parity-scale-codec", @@ -11015,7 +11015,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "finality-grandpa", "log", @@ -11033,7 +11033,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11047,7 +11047,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "bytes", "futures", @@ -11073,7 +11073,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "lazy_static", "sp-core", @@ -11084,7 +11084,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "async-trait", "futures", @@ -11101,7 +11101,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "thiserror", "zstd", @@ -11110,7 +11110,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "log", "parity-scale-codec", @@ -11126,7 +11126,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "parity-scale-codec", "scale-info", @@ -11140,7 +11140,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "sp-api", "sp-core", @@ -11150,7 +11150,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "backtrace", "lazy_static", @@ -11160,7 +11160,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "rustc-hash", "serde", @@ -11170,7 +11170,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "either", "hash256-std-hasher", @@ -11193,7 +11193,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11211,7 +11211,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "Inflector", "proc-macro-crate", @@ -11223,7 +11223,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "log", "parity-scale-codec", @@ -11237,7 +11237,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "serde", "serde_json", @@ -11246,7 +11246,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "parity-scale-codec", "scale-info", @@ -11260,7 +11260,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "parity-scale-codec", "scale-info", @@ -11271,7 +11271,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "hash-db", "log", @@ -11293,12 +11293,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11311,7 +11311,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "log", "sp-core", @@ -11324,7 +11324,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "async-trait", "futures-timer", @@ -11340,7 +11340,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "parity-scale-codec", "sp-std", @@ -11352,7 +11352,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "sp-api", "sp-runtime", @@ -11361,7 +11361,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "async-trait", "log", @@ -11377,7 +11377,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "ahash", "hash-db", @@ -11400,7 +11400,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11417,7 +11417,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11428,7 +11428,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "impl-trait-for-tuples", "log", @@ -11441,7 +11441,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11737,7 +11737,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "platforms", ] @@ -11745,7 +11745,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11766,7 +11766,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "futures-util", "hyper", @@ -11779,7 +11779,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "async-trait", "jsonrpsee", @@ -11792,7 +11792,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "jsonrpsee", "log", @@ -11813,7 +11813,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "array-bytes", "async-trait", @@ -11839,7 +11839,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11849,7 +11849,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11860,7 +11860,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "ansi_term", "build-helper", @@ -12386,7 +12386,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#c11b2621e6e0e20263a230b783d68820370f9ee1" +source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" dependencies = [ "clap 4.0.17", "frame-try-runtime", diff --git a/client/consensus/common/src/parachain_consensus.rs b/client/consensus/common/src/parachain_consensus.rs index ccdfb17b67..108dfd1c86 100644 --- a/client/consensus/common/src/parachain_consensus.rs +++ b/client/consensus/common/src/parachain_consensus.rs @@ -102,7 +102,7 @@ where // don't finalize the same block multiple times. if parachain.usage_info().chain.finalized_hash != hash { - if let Err(e) = parachain.finalize_block(BlockId::hash(hash), None, true) { + if let Err(e) = parachain.finalize_block(&hash, None, true) { match e { ClientError::UnknownBlock(_) => tracing::debug!( target: "cumulus-consensus", From ce654c4338eafc55704add786e1af253024dd820 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Oct 2022 20:45:35 +0200 Subject: [PATCH 35/48] Bump async-trait from 0.1.57 to 0.1.58 (#1783) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.57 to 0.1.58. - [Release notes](https://github.com/dtolnay/async-trait/releases) - [Commits](https://github.com/dtolnay/async-trait/compare/0.1.57...0.1.58) --- updated-dependencies: - dependency-name: async-trait dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: parity-processbot <> --- Cargo.lock | 4 ++-- client/consensus/aura/Cargo.toml | 2 +- client/consensus/common/Cargo.toml | 2 +- client/consensus/relay-chain/Cargo.toml | 2 +- client/network/Cargo.toml | 2 +- client/relay-chain-inprocess-interface/Cargo.toml | 2 +- client/relay-chain-interface/Cargo.toml | 2 +- client/relay-chain-minimal-node/Cargo.toml | 2 +- client/relay-chain-rpc-interface/Cargo.toml | 2 +- polkadot-parachain/Cargo.toml | 2 +- primitives/parachain-inherent/Cargo.toml | 2 +- test/service/Cargo.toml | 2 +- 12 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d87c7e6214..199d348e24 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -353,9 +353,9 @@ checksum = "e91831deabf0d6d7ec49552e489aed63b7456a7a3c46cff62adad428110b0af0" [[package]] name = "async-trait" -version = "0.1.57" +version = "0.1.58" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76464446b8bc32758d7e88ee1a804d9914cd9b1cb264c029899680b0be29826f" +checksum = "1e805d94e6b5001b651426cf4cd446b1ab5f319d27bab5c644f61de0a804360c" dependencies = [ "proc-macro2", "quote", diff --git a/client/consensus/aura/Cargo.toml b/client/consensus/aura/Cargo.toml index 9dd29d950b..bcc0c7b6db 100644 --- a/client/consensus/aura/Cargo.toml +++ b/client/consensus/aura/Cargo.toml @@ -6,7 +6,7 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -async-trait = "0.1.57" +async-trait = "0.1.58" codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] } futures = "0.3.24" tracing = "0.1.37" diff --git a/client/consensus/common/Cargo.toml b/client/consensus/common/Cargo.toml index 3f898ba7c5..515e62ad78 100644 --- a/client/consensus/common/Cargo.toml +++ b/client/consensus/common/Cargo.toml @@ -6,7 +6,7 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -async-trait = "0.1.57" +async-trait = "0.1.58" codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] } dyn-clone = "1.0.9" futures = "0.3.24" diff --git a/client/consensus/relay-chain/Cargo.toml b/client/consensus/relay-chain/Cargo.toml index 86caa856ed..c088ee3254 100644 --- a/client/consensus/relay-chain/Cargo.toml +++ b/client/consensus/relay-chain/Cargo.toml @@ -6,7 +6,7 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -async-trait = "0.1.57" +async-trait = "0.1.58" futures = "0.3.24" parking_lot = "0.12.1" tracing = "0.1.37" diff --git a/client/network/Cargo.toml b/client/network/Cargo.toml index 73dff3703e..90795bf60a 100644 --- a/client/network/Cargo.toml +++ b/client/network/Cargo.toml @@ -6,7 +6,7 @@ description = "Cumulus-specific networking protocol" edition = "2021" [dependencies] -async-trait = "0.1.57" +async-trait = "0.1.58" codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] } futures = "0.3.24" futures-timer = "3.0.2" diff --git a/client/relay-chain-inprocess-interface/Cargo.toml b/client/relay-chain-inprocess-interface/Cargo.toml index 80afe12228..97db47d788 100644 --- a/client/relay-chain-inprocess-interface/Cargo.toml +++ b/client/relay-chain-inprocess-interface/Cargo.toml @@ -5,7 +5,7 @@ version = "0.1.0" edition = "2021" [dependencies] -async-trait = "0.1.57" +async-trait = "0.1.58" futures = "0.3.24" futures-timer = "3.0.2" diff --git a/client/relay-chain-interface/Cargo.toml b/client/relay-chain-interface/Cargo.toml index a6ba721fbe..b7d1d14b08 100644 --- a/client/relay-chain-interface/Cargo.toml +++ b/client/relay-chain-interface/Cargo.toml @@ -16,7 +16,7 @@ sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = " sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = "0.3.24" -async-trait = "0.1.57" +async-trait = "0.1.58" thiserror = "1.0.37" jsonrpsee-core = "0.15.1" parity-scale-codec = "3.2.1" diff --git a/client/relay-chain-minimal-node/Cargo.toml b/client/relay-chain-minimal-node/Cargo.toml index cbc9bff901..ca0f097796 100644 --- a/client/relay-chain-minimal-node/Cargo.toml +++ b/client/relay-chain-minimal-node/Cargo.toml @@ -44,7 +44,7 @@ cumulus-primitives-core = { path = "../../primitives/core" } array-bytes = "4.1" lru = "0.8" tracing = "0.1.37" -async-trait = "0.1.52" +async-trait = "0.1.58" futures = "0.3.24" url = "2.2.2" tokio = { version = "1.21.2", features = ["macros"] } diff --git a/client/relay-chain-rpc-interface/Cargo.toml b/client/relay-chain-rpc-interface/Cargo.toml index db5e7808f8..dcd070e06a 100644 --- a/client/relay-chain-rpc-interface/Cargo.toml +++ b/client/relay-chain-rpc-interface/Cargo.toml @@ -27,6 +27,6 @@ futures-timer = "3.0.2" parity-scale-codec = "3.2.1" jsonrpsee = { version = "0.15.1", features = ["ws-client"] } tracing = "0.1.37" -async-trait = "0.1.57" +async-trait = "0.1.58" url = "2.3.1" backoff = { version = "0.4.0", features = ["tokio"] } diff --git a/polkadot-parachain/Cargo.toml b/polkadot-parachain/Cargo.toml index 4ad2bec29f..2d1a51f096 100644 --- a/polkadot-parachain/Cargo.toml +++ b/polkadot-parachain/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" description = "Runs a polkadot parachain node which could be a collator." [dependencies] -async-trait = "0.1.57" +async-trait = "0.1.58" clap = { version = "4.0.17", features = ["derive"] } codec = { package = "parity-scale-codec", version = "3.0.0" } futures = "0.3.24" diff --git a/primitives/parachain-inherent/Cargo.toml b/primitives/parachain-inherent/Cargo.toml index fb6f3b1973..70e279f00c 100644 --- a/primitives/parachain-inherent/Cargo.toml +++ b/primitives/parachain-inherent/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -async-trait = { version = "0.1.57", optional = true } +async-trait = { version = "0.1.58", optional = true } codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [ "derive" ] } scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } tracing = { version = "0.1.37", optional = true } diff --git a/test/service/Cargo.toml b/test/service/Cargo.toml index bef0c60ec7..6d537af991 100644 --- a/test/service/Cargo.toml +++ b/test/service/Cargo.toml @@ -9,7 +9,7 @@ name = "test-parachain" path = "src/main.rs" [dependencies] -async-trait = "0.1.57" +async-trait = "0.1.58" clap = { version = "4.0.17", features = ["derive"] } codec = { package = "parity-scale-codec", version = "3.0.0" } criterion = { version = "0.4.0", features = [ "async_tokio" ] } From 3409d6205a9d4755284149b5d1a63cbaacabf6bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Oct 2022 09:37:25 +0200 Subject: [PATCH 36/48] Bump assert_cmd from 2.0.4 to 2.0.5 (#1792) Bumps [assert_cmd](https://github.com/assert-rs/assert_cmd) from 2.0.4 to 2.0.5. - [Release notes](https://github.com/assert-rs/assert_cmd/releases) - [Changelog](https://github.com/assert-rs/assert_cmd/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/assert_cmd/compare/v2.0.4...v2.0.5) --- updated-dependencies: - dependency-name: assert_cmd dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 199d348e24..4111900502 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -159,9 +159,9 @@ checksum = "e22d1f4b888c298a027c99dc9048015fac177587de20fc30232a057dfbe24a21" [[package]] name = "assert_cmd" -version = "2.0.4" +version = "2.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93ae1ddd39efd67689deb1979d80bad3bf7f2b09c6e6117c8d1f2443b5e2f83e" +checksum = "d5c2ca00549910ec251e3bd15f87aeeb206c9456b9a77b43ff6c97c54042a472" dependencies = [ "bstr", "doc-comment", From 73a53d99b7a22e0e60e2b1f59b7b4201c88014b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Paulo=20Silva=20de=20Souza?= <77391175+joao-paulo-parity@users.noreply.github.com> Date: Fri, 21 Oct 2022 05:01:09 -0300 Subject: [PATCH 37/48] Add link to the weight comparison tool for weights PRs (#1788) * add link to the weight comparison tool for weights PRs * Update scripts/create-benchmark-pr.sh Co-authored-by: Chevdor * add backport checklist item * move to scripts/ci Co-authored-by: Chevdor --- scripts/ci/create-benchmark-pr.sh | 53 +++++++++++++++++++++++ scripts/ci/gitlab/pipeline/benchmarks.yml | 10 +---- 2 files changed, 55 insertions(+), 8 deletions(-) create mode 100755 scripts/ci/create-benchmark-pr.sh diff --git a/scripts/ci/create-benchmark-pr.sh b/scripts/ci/create-benchmark-pr.sh new file mode 100755 index 0000000000..46927f24b8 --- /dev/null +++ b/scripts/ci/create-benchmark-pr.sh @@ -0,0 +1,53 @@ +#!/usr/bin/env bash + +set -Eeu -o pipefail +shopt -s inherit_errexit + +PR_TITLE="$1" +HEAD_REF="$2" + +ORG="paritytech" +REPO="$CI_PROJECT_NAME" +BASE_REF="$CI_COMMIT_BRANCH" +# Change threshold in %. Bigger values excludes the small changes. +THRESHOLD=${THRESHOLD:-30} + +WEIGHTS_COMPARISON_URL_PARTS=( + "https://weights.tasty.limo/compare?" + "repo=$REPO&" + "threshold=$THRESHOLD&" + "path_pattern=**%2Fweights%2F*.rs&" + "method=guess-worst&" + "ignore_errors=true&" + "unit=time&" + "old=$BASE_REF&" + "new=$HEAD_REF" +) +printf -v WEIGHTS_COMPARISON_URL %s "${WEIGHTS_COMPARISON_URL_PARTS[@]}" + +PAYLOAD="$(jq -n \ + --arg title "$PR_TITLE" \ + --arg body " +This PR is generated automatically by CI. + +Compare the weights with \`$BASE_REF\`: $WEIGHTS_COMPARISON_URL + +- [ ] Backport to master and node release branch once merged +" \ + --arg base "$BASE_REF" \ + --arg head "$HEAD_REF" \ + '{ + title: $title, + body: $body, + head: $head, + base: $base + }' +)" + +echo "PAYLOAD: $PAYLOAD" + +curl \ + -H "Authorization: token $GITHUB_TOKEN" \ + -X POST \ + -d "$PAYLOAD" \ + "https://api.github.com/repos/$ORG/$REPO/pulls" diff --git a/scripts/ci/gitlab/pipeline/benchmarks.yml b/scripts/ci/gitlab/pipeline/benchmarks.yml index 03aedd0396..09a0d7d215 100644 --- a/scripts/ci/gitlab/pipeline/benchmarks.yml +++ b/scripts/ci/gitlab/pipeline/benchmarks.yml @@ -28,10 +28,7 @@ benchmarks-assets: - export CURRENT_TIME=$(date '+%s') - export BRANCHNAME="weights-statemint-${CI_COMMIT_BRANCH}-${CURRENT_TIME}" - !reference [.git-commit-push, script] - # create PR to release-parachains-v* branch - - curl -u ${GITHUB_USER}:${GITHUB_TOKEN} - -d '{"title":"[benchmarks] Update weights for statemine/t","body":"This PR is generated automatically by CI. (Once merged please backport to master and node release branch.)","head":"'${BRANCHNAME}'","base":"'${CI_COMMIT_BRANCH}'"}' - -X POST https://api.github.com/repos/paritytech/${CI_PROJECT_NAME}/pulls + - ./scripts/ci/create-benchmark-pr.sh "[benchmarks] Update weights for statemine/t" "$BRANCHNAME" after_script: - rm -rf .git/config tags: @@ -50,10 +47,7 @@ benchmarks-collectives: - export CURRENT_TIME=$(date '+%s') - export BRANCHNAME="weights-collectives-${CI_COMMIT_BRANCH}-${CURRENT_TIME}" - !reference [.git-commit-push, script] - # create PR - - curl -u ${GITHUB_USER}:${GITHUB_TOKEN} - -d '{"title":"[benchmarks] Update weights for collectives","body":"This PR is generated automatically by CI.","head":"'$BRANCHNAME'","base":"'${CI_COMMIT_BRANCH}'"}' - -X POST https://api.github.com/repos/paritytech/${CI_PROJECT_NAME}/pulls + - ./scripts/ci/create-benchmark-pr.sh "[benchmarks] Update weights for collectives" "$BRANCHNAME" after_script: - rm -rf .git/config tags: From 3d257b770d06e94dfe223b0ba8f1252740814ea4 Mon Sep 17 00:00:00 2001 From: Davide Galassi Date: Fri, 21 Oct 2022 10:41:46 +0200 Subject: [PATCH 38/48] Single ParachainBlockImport instance (#1782) --- client/consensus/aura/src/import_queue.rs | 7 +- client/consensus/aura/src/lib.rs | 34 ++-- client/consensus/common/src/lib.rs | 6 + .../consensus/relay-chain/src/import_queue.rs | 12 +- client/consensus/relay-chain/src/lib.rs | 8 +- parachain-template/node/src/command.rs | 1 - parachain-template/node/src/service.rs | 24 ++- polkadot-parachain/src/service.rs | 164 ++++++++++-------- test/service/src/lib.rs | 19 +- 9 files changed, 154 insertions(+), 121 deletions(-) diff --git a/client/consensus/aura/src/import_queue.rs b/client/consensus/aura/src/import_queue.rs index 80b35a2bab..2c21bf546b 100644 --- a/client/consensus/aura/src/import_queue.rs +++ b/client/consensus/aura/src/import_queue.rs @@ -17,6 +17,7 @@ //! Parachain specific wrapper for the AuRa import queue. use codec::Codec; +use cumulus_client_consensus_common::ParachainBlockImport; use sc_client_api::{backend::AuxStore, BlockOf, UsageProvider}; use sc_consensus::{import_queue::DefaultImportQueue, BlockImport}; use sc_consensus_aura::AuraVerifier; @@ -33,10 +34,10 @@ use sp_runtime::traits::Block as BlockT; use std::{fmt::Debug, hash::Hash, sync::Arc}; use substrate_prometheus_endpoint::Registry; -/// Parameters of [`import_queue`]. +/// Parameters for [`import_queue`]. pub struct ImportQueueParams<'a, I, C, CIDP, S> { /// The block import to use. - pub block_import: I, + pub block_import: ParachainBlockImport, /// The client to interact with the chain. pub client: Arc, /// The inherent data providers, to create the inherent data. @@ -83,7 +84,7 @@ where CIDP::InherentDataProviders: InherentDataProviderExt + Send + Sync, { sc_consensus_aura::import_queue::(sc_consensus_aura::ImportQueueParams { - block_import: cumulus_client_consensus_common::ParachainBlockImport::new(block_import), + block_import, justification_import: None, client, create_inherent_data_providers, diff --git a/client/consensus/aura/src/lib.rs b/client/consensus/aura/src/lib.rs index 1be562e37c..5dbd9fcd51 100644 --- a/client/consensus/aura/src/lib.rs +++ b/client/consensus/aura/src/lib.rs @@ -71,6 +71,22 @@ impl Clone for AuraConsensus { } } +/// Parameters of [`AuraConsensus::build`]. +pub struct BuildAuraConsensusParams { + pub proposer_factory: PF, + pub create_inherent_data_providers: CIDP, + pub block_import: ParachainBlockImport, + pub para_client: Arc, + pub backoff_authoring_blocks: Option, + pub sync_oracle: SO, + pub keystore: SyncCryptoStorePtr, + pub force_authoring: bool, + pub slot_duration: SlotDuration, + pub telemetry: Option, + pub block_proposal_slot_portion: SlotProportion, + pub max_block_proposal_slot_portion: Option, +} + impl AuraConsensus where B: BlockT, @@ -117,7 +133,7 @@ where let worker = sc_consensus_aura::build_aura_worker::( BuildAuraWorkerParams { client: para_client, - block_import: ParachainBlockImport::new(block_import), + block_import, justification_sync_link: (), proposer_factory, sync_oracle, @@ -216,19 +232,3 @@ where Some(ParachainCandidate { block: res.block, proof: res.storage_proof }) } } - -/// Parameters of [`AuraConsensus::build`]. -pub struct BuildAuraConsensusParams { - pub proposer_factory: PF, - pub create_inherent_data_providers: CIDP, - pub block_import: BI, - pub para_client: Arc, - pub backoff_authoring_blocks: Option, - pub sync_oracle: SO, - pub keystore: SyncCryptoStorePtr, - pub force_authoring: bool, - pub slot_duration: SlotDuration, - pub telemetry: Option, - pub block_proposal_slot_portion: SlotProportion, - pub max_block_proposal_slot_portion: Option, -} diff --git a/client/consensus/common/src/lib.rs b/client/consensus/common/src/lib.rs index 61098dfd43..d5d3358543 100644 --- a/client/consensus/common/src/lib.rs +++ b/client/consensus/common/src/lib.rs @@ -83,6 +83,12 @@ impl ParachainBlockImport { } } +impl Clone for ParachainBlockImport { + fn clone(&self) -> Self { + ParachainBlockImport(self.0.clone()) + } +} + #[async_trait::async_trait] impl BlockImport for ParachainBlockImport where diff --git a/client/consensus/relay-chain/src/import_queue.rs b/client/consensus/relay-chain/src/import_queue.rs index 3792a9c04b..e5a31e600b 100644 --- a/client/consensus/relay-chain/src/import_queue.rs +++ b/client/consensus/relay-chain/src/import_queue.rs @@ -16,6 +16,8 @@ use std::{marker::PhantomData, sync::Arc}; +use cumulus_client_consensus_common::ParachainBlockImport; + use sc_consensus::{ import_queue::{BasicQueue, Verifier as VerifierT}, BlockImport, BlockImportParams, @@ -103,7 +105,7 @@ where /// Start an import queue for a Cumulus collator that does not uses any special authoring logic. pub fn import_queue( client: Arc, - block_import: I, + block_import: ParachainBlockImport, create_inherent_data_providers: CIDP, spawner: &impl sp_core::traits::SpawnEssentialNamed, registry: Option<&substrate_prometheus_endpoint::Registry>, @@ -117,11 +119,5 @@ where { let verifier = Verifier::new(client, create_inherent_data_providers); - Ok(BasicQueue::new( - verifier, - Box::new(cumulus_client_consensus_common::ParachainBlockImport::new(block_import)), - None, - spawner, - registry, - )) + Ok(BasicQueue::new(verifier, Box::new(block_import), None, spawner, registry)) } diff --git a/client/consensus/relay-chain/src/lib.rs b/client/consensus/relay-chain/src/lib.rs index 20d3b7cc75..decef37397 100644 --- a/client/consensus/relay-chain/src/lib.rs +++ b/client/consensus/relay-chain/src/lib.rs @@ -90,16 +90,14 @@ where para_id: ParaId, proposer_factory: PF, create_inherent_data_providers: CIDP, - block_import: BI, + block_import: ParachainBlockImport, relay_chain_interface: RCInterface, ) -> Self { Self { para_id, proposer_factory: Arc::new(Mutex::new(proposer_factory)), create_inherent_data_providers: Arc::new(create_inherent_data_providers), - block_import: Arc::new(futures::lock::Mutex::new(ParachainBlockImport::new( - block_import, - ))), + block_import: Arc::new(futures::lock::Mutex::new(block_import)), relay_chain_interface, _phantom: PhantomData, } @@ -222,7 +220,7 @@ pub struct BuildRelayChainConsensusParams { pub para_id: ParaId, pub proposer_factory: PF, pub create_inherent_data_providers: CIDP, - pub block_import: BI, + pub block_import: ParachainBlockImport, pub relay_chain_interface: RCInterface, } diff --git a/parachain-template/node/src/command.rs b/parachain-template/node/src/command.rs index 7301b6d570..14a7e046bd 100644 --- a/parachain-template/node/src/command.rs +++ b/parachain-template/node/src/command.rs @@ -217,7 +217,6 @@ pub fn run() -> Result<()> { let partials = new_partial(&config)?; let db = partials.backend.expose_db(); let storage = partials.backend.expose_storage(); - cmd.run(config, partials.client.clone(), db, storage) }), BenchmarkCmd::Machine(cmd) => diff --git a/parachain-template/node/src/service.rs b/parachain-template/node/src/service.rs index 0980bb2cf7..eab3337452 100644 --- a/parachain-template/node/src/service.rs +++ b/parachain-template/node/src/service.rs @@ -9,7 +9,9 @@ use parachain_template_runtime::{opaque::Block, Hash, RuntimeApi}; // Cumulus Imports use cumulus_client_consensus_aura::{AuraConsensus, BuildAuraConsensusParams, SlotProportion}; -use cumulus_client_consensus_common::ParachainConsensus; +use cumulus_client_consensus_common::{ + ParachainBlockImport as TParachainBlockImport, ParachainConsensus, +}; use cumulus_client_network::BlockAnnounceValidator; use cumulus_client_service::{ prepare_node_config, start_collator, start_full_node, StartCollatorParams, StartFullNodeParams, @@ -51,6 +53,8 @@ type ParachainClient = TFullClient; type ParachainBackend = TFullBackend; +type ParachainBlockImport = TParachainBlockImport>; + /// Starts a `ServiceBuilder` for a full service. /// /// Use this macro if you don't actually need the full service, but just the builder in order to @@ -64,7 +68,7 @@ pub fn new_partial( (), sc_consensus::DefaultImportQueue, sc_transaction_pool::FullPool, - (Option, Option), + (ParachainBlockImport, Option, Option), >, sc_service::Error, > { @@ -109,8 +113,11 @@ pub fn new_partial( client.clone(), ); + let block_import = ParachainBlockImport::new(client.clone()); + let import_queue = build_import_queue( client.clone(), + block_import.clone(), config, telemetry.as_ref().map(|telemetry| telemetry.handle()), &task_manager, @@ -124,7 +131,7 @@ pub fn new_partial( task_manager, transaction_pool, select_chain: (), - other: (telemetry, telemetry_worker_handle), + other: (block_import, telemetry, telemetry_worker_handle), }) } @@ -163,7 +170,7 @@ async fn start_node_impl( let parachain_config = prepare_node_config(parachain_config); let params = new_partial(¶chain_config)?; - let (mut telemetry, telemetry_worker_handle) = params.other; + let (block_import, mut telemetry, telemetry_worker_handle) = params.other; let client = params.client.clone(); let backend = params.backend.clone(); @@ -255,6 +262,7 @@ async fn start_node_impl( if validator { let parachain_consensus = build_consensus( client.clone(), + block_import, prometheus_registry.as_ref(), telemetry.as_ref().map(|t| t.handle()), &task_manager, @@ -304,6 +312,7 @@ async fn start_node_impl( /// Build the import queue for the parachain runtime. fn build_import_queue( client: Arc, + block_import: ParachainBlockImport, config: &Configuration, telemetry: Option, task_manager: &TaskManager, @@ -318,8 +327,8 @@ fn build_import_queue( _, _, >(cumulus_client_consensus_aura::ImportQueueParams { - block_import: client.clone(), - client: client.clone(), + block_import, + client, create_inherent_data_providers: move |_, _| async move { let timestamp = sp_timestamp::InherentDataProvider::from_system_time(); @@ -340,6 +349,7 @@ fn build_import_queue( fn build_consensus( client: Arc, + block_import: ParachainBlockImport, prometheus_registry: Option<&Registry>, telemetry: Option, task_manager: &TaskManager, @@ -389,7 +399,7 @@ fn build_consensus( Ok((slot, timestamp, parachain_inherent)) } }, - block_import: client.clone(), + block_import, para_client: client, backoff_authoring_blocks: Option::<()>::None, sync_oracle, diff --git a/polkadot-parachain/src/service.rs b/polkadot-parachain/src/service.rs index 2f38da0bd5..4c87c20d77 100644 --- a/polkadot-parachain/src/service.rs +++ b/polkadot-parachain/src/service.rs @@ -18,7 +18,7 @@ use codec::Codec; use cumulus_client_cli::CollatorOptions; use cumulus_client_consensus_aura::{AuraConsensus, BuildAuraConsensusParams, SlotProportion}; use cumulus_client_consensus_common::{ - ParachainBlockImport, ParachainCandidate, ParachainConsensus, + ParachainBlockImport as TParachainBlockImport, ParachainCandidate, ParachainConsensus, }; use cumulus_client_network::BlockAnnounceValidator; use cumulus_client_service::{ @@ -73,6 +73,8 @@ type ParachainClient = TFullClient; +type ParachainBlockImport = TParachainBlockImport>>; + /// Native executor instance. pub struct ShellRuntimeExecutor; @@ -162,7 +164,7 @@ pub fn new_partial( (), sc_consensus::DefaultImportQueue>, sc_transaction_pool::FullPool>, - (Option, Option), + (ParachainBlockImport, Option, Option), >, sc_service::Error, > @@ -179,6 +181,7 @@ where sc_client_api::StateBackendFor: sp_api::StateBackend, BIQ: FnOnce( Arc>, + ParachainBlockImport, &Configuration, Option, &TaskManager, @@ -229,8 +232,11 @@ where client.clone(), ); + let block_import = ParachainBlockImport::new(client.clone()); + let import_queue = build_import_queue( client.clone(), + block_import.clone(), config, telemetry.as_ref().map(|telemetry| telemetry.handle()), &task_manager, @@ -244,7 +250,7 @@ where task_manager, transaction_pool, select_chain: (), - other: (telemetry, telemetry_worker_handle), + other: (block_import, telemetry, telemetry_worker_handle), }; Ok(params) @@ -279,7 +285,7 @@ async fn start_shell_node_impl( parachain_config: Configuration, polkadot_config: Configuration, collator_options: CollatorOptions, - id: ParaId, + para_id: ParaId, rpc_ext_builder: RB, build_import_queue: BIQ, build_consensus: BIC, @@ -298,10 +304,10 @@ where + cumulus_primitives_core::CollectCollationInfo, sc_client_api::StateBackendFor: sp_api::StateBackend, RB: Fn(Arc>) -> Result, sc_service::Error> - + Send + 'static, BIQ: FnOnce( Arc>, + ParachainBlockImport, &Configuration, Option, &TaskManager, @@ -311,6 +317,7 @@ where >, BIC: FnOnce( Arc>, + ParachainBlockImport, Option<&Registry>, Option, &TaskManager, @@ -324,7 +331,7 @@ where let parachain_config = prepare_node_config(parachain_config); let params = new_partial::(¶chain_config, build_import_queue)?; - let (mut telemetry, telemetry_worker_handle) = params.other; + let (block_import, mut telemetry, telemetry_worker_handle) = params.other; let client = params.client.clone(); let backend = params.backend.clone(); @@ -345,7 +352,8 @@ where s => s.to_string().into(), })?; - let block_announce_validator = BlockAnnounceValidator::new(relay_chain_interface.clone(), id); + let block_announce_validator = + BlockAnnounceValidator::new(relay_chain_interface.clone(), para_id); let force_authoring = parachain_config.force_authoring; let validator = parachain_config.role.is_authority(); @@ -405,6 +413,7 @@ where if validator { let parachain_consensus = build_consensus( client.clone(), + block_import, prometheus_registry.as_ref(), telemetry.as_ref().map(|t| t.handle()), &task_manager, @@ -418,7 +427,7 @@ where let spawner = task_manager.spawn_handle(); let params = StartCollatorParams { - para_id: id, + para_id, block_status: client.clone(), announce_block, client: client.clone(), @@ -437,7 +446,7 @@ where client: client.clone(), announce_block, task_manager: &mut task_manager, - para_id: id, + para_id, relay_chain_interface, relay_chain_slot_duration, import_queue, @@ -459,7 +468,7 @@ async fn start_node_impl( parachain_config: Configuration, polkadot_config: Configuration, collator_options: CollatorOptions, - id: ParaId, + para_id: ParaId, _rpc_ext_builder: RB, build_import_queue: BIQ, build_consensus: BIC, @@ -479,20 +488,20 @@ where + pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi + frame_rpc_system::AccountNonceApi, sc_client_api::StateBackendFor: sp_api::StateBackend, - RB: Fn(Arc>) -> Result, sc_service::Error> - + Send - + 'static, + RB: Fn(Arc>) -> Result, sc_service::Error>, BIQ: FnOnce( - Arc>, - &Configuration, - Option, - &TaskManager, - ) -> Result< - sc_consensus::DefaultImportQueue>, - sc_service::Error, - > + 'static, + Arc>, + ParachainBlockImport, + &Configuration, + Option, + &TaskManager, + ) -> Result< + sc_consensus::DefaultImportQueue>, + sc_service::Error, + >, BIC: FnOnce( Arc>, + ParachainBlockImport, Option<&Registry>, Option, &TaskManager, @@ -506,7 +515,7 @@ where let parachain_config = prepare_node_config(parachain_config); let params = new_partial::(¶chain_config, build_import_queue)?; - let (mut telemetry, telemetry_worker_handle) = params.other; + let (block_import, mut telemetry, telemetry_worker_handle) = params.other; let client = params.client.clone(); let backend = params.backend.clone(); @@ -526,7 +535,8 @@ where s => s.to_string().into(), })?; - let block_announce_validator = BlockAnnounceValidator::new(relay_chain_interface.clone(), id); + let block_announce_validator = + BlockAnnounceValidator::new(relay_chain_interface.clone(), para_id); let force_authoring = parachain_config.force_authoring; let validator = parachain_config.role.is_authority(); @@ -598,6 +608,7 @@ where if validator { let parachain_consensus = build_consensus( client.clone(), + block_import, prometheus_registry.as_ref(), telemetry.as_ref().map(|t| t.handle()), &task_manager, @@ -611,7 +622,7 @@ where let spawner = task_manager.spawn_handle(); let params = StartCollatorParams { - para_id: id, + para_id, block_status: client.clone(), announce_block, client: client.clone(), @@ -630,7 +641,7 @@ where client: client.clone(), announce_block, task_manager: &mut task_manager, - para_id: id, + para_id, relay_chain_interface, relay_chain_slot_duration, import_queue, @@ -647,6 +658,7 @@ where /// Build the import queue for the rococo parachain runtime. pub fn rococo_parachain_build_import_queue( client: Arc>, + block_import: ParachainBlockImport, config: &Configuration, telemetry: Option, task_manager: &TaskManager, @@ -664,7 +676,7 @@ pub fn rococo_parachain_build_import_queue( _, _, >(cumulus_client_consensus_aura::ImportQueueParams { - block_import: client.clone(), + block_import, client, create_inherent_data_providers: move |_, _| async move { let timestamp = sp_timestamp::InherentDataProvider::from_system_time(); @@ -689,7 +701,7 @@ pub async fn start_rococo_parachain_node( parachain_config: Configuration, polkadot_config: Configuration, collator_options: CollatorOptions, - id: ParaId, + para_id: ParaId, hwbench: Option, ) -> sc_service::error::Result<( TaskManager, @@ -699,10 +711,11 @@ pub async fn start_rococo_parachain_node( parachain_config, polkadot_config, collator_options, - id, + para_id, |_| Ok(RpcModule::new(())), rococo_parachain_build_import_queue, |client, + block_import, prometheus_registry, telemetry, task_manager, @@ -733,7 +746,7 @@ pub async fn start_rococo_parachain_node( relay_parent, &relay_chain_interface, &validation_data, - id, + para_id, ).await; let timestamp = sp_timestamp::InherentDataProvider::from_system_time(); @@ -753,7 +766,7 @@ pub async fn start_rococo_parachain_node( Ok((slot, timestamp, parachain_inherent)) } }, - block_import: client.clone(), + block_import, para_client: client, backoff_authoring_blocks: Option::<()>::None, sync_oracle, @@ -776,6 +789,7 @@ pub async fn start_rococo_parachain_node( /// Build the import queue for the shell runtime. pub fn shell_build_import_queue( client: Arc>, + block_import: ParachainBlockImport, config: &Configuration, _: Option, task_manager: &TaskManager, @@ -794,7 +808,7 @@ where { cumulus_client_consensus_relay_chain::import_queue( client.clone(), - client, + block_import, |_, _| async { Ok(()) }, &task_manager.spawn_essential_handle(), config.prometheus_registry(), @@ -807,7 +821,7 @@ pub async fn start_shell_node( parachain_config: Configuration, polkadot_config: Configuration, collator_options: CollatorOptions, - id: ParaId, + para_id: ParaId, hwbench: Option, ) -> sc_service::error::Result<(TaskManager, Arc>)> where @@ -827,10 +841,11 @@ where parachain_config, polkadot_config, collator_options, - id, + para_id, |_| Ok(RpcModule::new(())), shell_build_import_queue, |client, + block_import, prometheus_registry, telemetry, task_manager, @@ -841,7 +856,7 @@ where _| { let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording( task_manager.spawn_handle(), - client.clone(), + client, transaction_pool, prometheus_registry, telemetry, @@ -849,9 +864,9 @@ where Ok(cumulus_client_consensus_relay_chain::build_relay_chain_consensus( cumulus_client_consensus_relay_chain::BuildRelayChainConsensusParams { - para_id: id, + para_id, proposer_factory, - block_import: client, + block_import, relay_chain_interface: relay_chain_interface.clone(), create_inherent_data_providers: move |_, (relay_parent, validation_data)| { let relay_chain_interface = relay_chain_interface.clone(); @@ -861,7 +876,7 @@ where relay_parent, &relay_chain_interface, &validation_data, - id, + para_id, ).await; let parachain_inherent = parachain_inherent.ok_or_else(|| { Box::::from( @@ -989,6 +1004,7 @@ where /// Build the import queue for Statemint and other Aura-based runtimes. pub fn aura_build_import_queue( client: Arc>, + block_import: ParachainBlockImport, config: &Configuration, telemetry_handle: Option, task_manager: &TaskManager, @@ -1045,13 +1061,7 @@ where let registry = config.prometheus_registry(); let spawner = task_manager.spawn_essential_handle(); - Ok(BasicQueue::new( - verifier, - Box::new(ParachainBlockImport::new(client)), - None, - &spawner, - registry, - )) + Ok(BasicQueue::new(verifier, Box::new(block_import), None, &spawner, registry)) } /// Start an aura powered parachain node. @@ -1060,7 +1070,7 @@ pub async fn start_generic_aura_node( parachain_config: Configuration, polkadot_config: Configuration, collator_options: CollatorOptions, - id: ParaId, + para_id: ParaId, hwbench: Option, ) -> sc_service::error::Result<(TaskManager, Arc>)> where @@ -1085,10 +1095,11 @@ where parachain_config, polkadot_config, collator_options, - id, + para_id, |_| Ok(RpcModule::new(())), aura_build_import_queue::<_, AuraId>, |client, + block_import, prometheus_registry, telemetry, task_manager, @@ -1097,8 +1108,9 @@ where sync_oracle, keystore, force_authoring| { - let client2 = client.clone(); let spawn_handle = task_manager.spawn_handle(); + let client2 = client.clone(); + let block_import2 = block_import.clone(); let transaction_pool2 = transaction_pool.clone(); let telemetry2 = telemetry.clone(); let prometheus_registry2 = prometheus_registry.map(|r| (*r).clone()); @@ -1127,7 +1139,7 @@ where relay_parent, &relay_chain_for_aura, &validation_data, - id, + para_id, ).await; let timestamp = @@ -1149,8 +1161,8 @@ where Ok((slot, timestamp, parachain_inherent)) } }, - block_import: client2.clone(), - para_client: client2.clone(), + block_import: block_import2, + para_client: client2, backoff_authoring_blocks: Option::<()>::None, sync_oracle, keystore, @@ -1176,9 +1188,9 @@ where let relay_chain_consensus = cumulus_client_consensus_relay_chain::build_relay_chain_consensus( cumulus_client_consensus_relay_chain::BuildRelayChainConsensusParams { - para_id: id, + para_id, proposer_factory, - block_import: client.clone(), + block_import, relay_chain_interface: relay_chain_interface.clone(), create_inherent_data_providers: move |_, (relay_parent, validation_data)| { @@ -1189,7 +1201,7 @@ where relay_parent, &relay_chain_interface, &validation_data, - id, + para_id, ).await; let parachain_inherent = parachain_inherent.ok_or_else(|| { @@ -1222,7 +1234,7 @@ async fn start_contracts_rococo_node_impl( parachain_config: Configuration, polkadot_config: Configuration, collator_options: CollatorOptions, - id: ParaId, + para_id: ParaId, _rpc_ext_builder: RB, build_import_queue: BIQ, build_consensus: BIC, @@ -1242,20 +1254,20 @@ where + pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi + frame_rpc_system::AccountNonceApi, sc_client_api::StateBackendFor: sp_api::StateBackend, - RB: Fn(Arc>) -> Result, sc_service::Error> - + Send - + 'static, + RB: Fn(Arc>) -> Result, sc_service::Error>, BIQ: FnOnce( - Arc>, - &Configuration, - Option, - &TaskManager, - ) -> Result< - sc_consensus::DefaultImportQueue>, - sc_service::Error, - > + 'static, + Arc>, + ParachainBlockImport, + &Configuration, + Option, + &TaskManager, + ) -> Result< + sc_consensus::DefaultImportQueue>, + sc_service::Error, + >, BIC: FnOnce( Arc>, + ParachainBlockImport, Option<&Registry>, Option, &TaskManager, @@ -1269,7 +1281,7 @@ where let parachain_config = prepare_node_config(parachain_config); let params = new_partial::(¶chain_config, build_import_queue)?; - let (mut telemetry, telemetry_worker_handle) = params.other; + let (block_import, mut telemetry, telemetry_worker_handle) = params.other; let client = params.client.clone(); let backend = params.backend.clone(); @@ -1289,7 +1301,8 @@ where s => s.to_string().into(), })?; - let block_announce_validator = BlockAnnounceValidator::new(relay_chain_interface.clone(), id); + let block_announce_validator = + BlockAnnounceValidator::new(relay_chain_interface.clone(), para_id); let force_authoring = parachain_config.force_authoring; let validator = parachain_config.role.is_authority(); @@ -1361,6 +1374,7 @@ where if validator { let parachain_consensus = build_consensus( client.clone(), + block_import, prometheus_registry.as_ref(), telemetry.as_ref().map(|t| t.handle()), &task_manager, @@ -1374,7 +1388,7 @@ where let spawner = task_manager.spawn_handle(); let params = StartCollatorParams { - para_id: id, + para_id, block_status: client.clone(), announce_block, client: client.clone(), @@ -1393,7 +1407,7 @@ where client: client.clone(), announce_block, task_manager: &mut task_manager, - para_id: id, + para_id, relay_chain_interface, relay_chain_slot_duration, import_queue, @@ -1410,6 +1424,7 @@ where #[allow(clippy::type_complexity)] pub fn contracts_rococo_build_import_queue( client: Arc>, + block_import: ParachainBlockImport, config: &Configuration, telemetry: Option, task_manager: &TaskManager, @@ -1427,7 +1442,7 @@ pub fn contracts_rococo_build_import_queue( _, _, >(cumulus_client_consensus_aura::ImportQueueParams { - block_import: client.clone(), + block_import, client, create_inherent_data_providers: move |_, _| async move { let timestamp = sp_timestamp::InherentDataProvider::from_system_time(); @@ -1452,7 +1467,7 @@ pub async fn start_contracts_rococo_node( parachain_config: Configuration, polkadot_config: Configuration, collator_options: CollatorOptions, - id: ParaId, + para_id: ParaId, hwbench: Option, ) -> sc_service::error::Result<( TaskManager, @@ -1462,10 +1477,11 @@ pub async fn start_contracts_rococo_node( parachain_config, polkadot_config, collator_options, - id, + para_id, |_| Ok(RpcModule::new(())), contracts_rococo_build_import_queue, |client, + block_import, prometheus_registry, telemetry, task_manager, @@ -1495,7 +1511,7 @@ pub async fn start_contracts_rococo_node( relay_parent, &relay_chain_interface, &validation_data, - id, + para_id, ).await; let timestamp = sp_timestamp::InherentDataProvider::from_system_time(); @@ -1515,7 +1531,7 @@ pub async fn start_contracts_rococo_node( Ok((slot, timestamp, parachain_inherent)) } }, - block_import: client.clone(), + block_import, para_client: client, backoff_authoring_blocks: Option::<()>::None, sync_oracle, diff --git a/test/service/src/lib.rs b/test/service/src/lib.rs index 9e9f5883f9..29f37806cc 100644 --- a/test/service/src/lib.rs +++ b/test/service/src/lib.rs @@ -30,7 +30,9 @@ use url::Url; use crate::runtime::Weight; use cumulus_client_cli::CollatorOptions; -use cumulus_client_consensus_common::{ParachainCandidate, ParachainConsensus}; +use cumulus_client_consensus_common::{ + ParachainBlockImport as TParachainBlockImport, ParachainCandidate, ParachainConsensus, +}; use cumulus_client_network::BlockAnnounceValidator; use cumulus_client_service::{ prepare_node_config, start_collator, start_full_node, StartCollatorParams, StartFullNodeParams, @@ -117,6 +119,8 @@ pub type Client = TFullClient< /// Transaction pool type used by the test service pub type TransactionPool = Arc>; +type ParachainBlockImport = TParachainBlockImport>; + /// Starts a `ServiceBuilder` for a full service. /// /// Use this macro if you don't actually need the full service, but just the builder in order to @@ -130,7 +134,7 @@ pub fn new_partial( (), sc_consensus::import_queue::BasicQueue>, sc_transaction_pool::FullPool, - (), + ParachainBlockImport, >, sc_service::Error, > { @@ -145,6 +149,8 @@ pub fn new_partial( sc_service::new_full_parts::(config, None, executor)?; let client = Arc::new(client); + let block_import = ParachainBlockImport::new(client.clone()); + let registry = config.prometheus_registry(); let transaction_pool = sc_transaction_pool::BasicPool::new_full( @@ -157,7 +163,7 @@ pub fn new_partial( let import_queue = cumulus_client_consensus_relay_chain::import_queue( client.clone(), - client.clone(), + block_import.clone(), |_, _| async { Ok(sp_timestamp::InherentDataProvider::from_system_time()) }, &task_manager.spawn_essential_handle(), registry, @@ -171,7 +177,7 @@ pub fn new_partial( task_manager, transaction_pool, select_chain: (), - other: (), + other: block_import, }; Ok(params) @@ -244,6 +250,8 @@ where let client = params.client.clone(); let backend = params.backend.clone(); + let block_import = params.other; + let relay_chain_interface = build_relay_chain_interface( relay_chain_config, collator_key.clone(), @@ -275,7 +283,6 @@ where let rpc_builder = { let client = client.clone(); - Box::new(move |_, _| rpc_ext_builder(client.clone())) }; @@ -338,7 +345,7 @@ where Ok((time, parachain_inherent)) } }, - client.clone(), + block_import, relay_chain_interface2, )) }, From b566f3b3038dd1af0667613e4477fb1fd4478cb3 Mon Sep 17 00:00:00 2001 From: Keith Yeung Date: Mon, 24 Oct 2022 23:03:02 +0800 Subject: [PATCH 39/48] Fix a few migration issues with 2D weights (#1755) * Give a max proof size to DMP individual weight processing during migration * Fix a few migration issues with 2D weights * Update substrate * Fixes * cargo fmt * Re-add v1 migration * Set DEFAULT_POV_SIZE to 64 KB * Use Weight::from_parts * Update Polkadot * Fixes --- Cargo.lock | 710 +++++++++++----------- pallets/dmp-queue/src/lib.rs | 7 +- pallets/dmp-queue/src/migration.rs | 7 +- pallets/parachain-system/src/lib.rs | 1 + pallets/parachain-system/src/migration.rs | 43 +- pallets/xcmp-queue/src/lib.rs | 6 +- pallets/xcmp-queue/src/migration.rs | 7 +- pallets/xcmp-queue/src/tests.rs | 5 +- 8 files changed, 421 insertions(+), 365 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4111900502..13da7074fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -159,9 +159,9 @@ checksum = "e22d1f4b888c298a027c99dc9048015fac177587de20fc30232a057dfbe24a21" [[package]] name = "assert_cmd" -version = "2.0.5" +version = "2.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5c2ca00549910ec251e3bd15f87aeeb206c9456b9a77b43ff6c97c54042a472" +checksum = "93ae1ddd39efd67689deb1979d80bad3bf7f2b09c6e6117c8d1f2443b5e2f83e" dependencies = [ "bstr", "doc-comment", @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "beefy-primitives", "sp-api", @@ -536,7 +536,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "parity-scale-codec", "scale-info", @@ -989,9 +989,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.0.17" +version = "4.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06badb543e734a2d6568e19a40af66ed5364360b9226184926f89d229b4b4267" +checksum = "335867764ed2de42325fafe6d18b8af74ba97ee0c590fa016f157535b42ab04b" dependencies = [ "atty", "bitflags", @@ -1004,9 +1004,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.0.13" +version = "4.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c42f169caba89a7d512b5418b09864543eeb4d497416c917d7137863bd2076ad" +checksum = "16a1b0f6422af32d5da0c58e2703320f379216ee70198241c84173a8c5ac28f3" dependencies = [ "heck", "proc-macro-error", @@ -1085,7 +1085,7 @@ dependencies = [ "parachains-common", "parity-scale-codec", "polkadot-core-primitives", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "polkadot-runtime-common", "polkadot-runtime-constants", "scale-info", @@ -1181,7 +1181,7 @@ dependencies = [ "parachains-common", "parity-scale-codec", "polkadot-core-primitives", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "polkadot-runtime-common", "scale-info", "smallvec", @@ -1521,7 +1521,7 @@ dependencies = [ name = "cumulus-client-cli" version = "0.1.0" dependencies = [ - "clap 4.0.17", + "clap 4.0.18", "parity-scale-codec", "sc-chain-spec", "sc-cli", @@ -1647,7 +1647,7 @@ dependencies = [ "parking_lot 0.12.1", "polkadot-client", "polkadot-node-primitives", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "polkadot-primitives", "polkadot-service", "polkadot-test-client", @@ -1768,7 +1768,7 @@ dependencies = [ "lazy_static", "log", "parity-scale-codec", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "sc-client-api", "scale-info", "sp-core", @@ -1881,7 +1881,7 @@ version = "0.1.0" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "polkadot-primitives", "sp-api", "sp-runtime", @@ -2073,7 +2073,7 @@ dependencies = [ "pallet-balances", "pallet-transaction-payment", "parity-scale-codec", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "polkadot-primitives", "sc-block-builder", "sc-consensus", @@ -2147,7 +2147,7 @@ name = "cumulus-test-service" version = "0.1.0" dependencies = [ "async-trait", - "clap 4.0.17", + "clap 4.0.18", "criterion", "cumulus-client-cli", "cumulus-client-consensus-common", @@ -2802,7 +2802,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "parity-scale-codec", ] @@ -2825,7 +2825,7 @@ checksum = "85dcb89d2b10c5f6133de2efd8c11959ce9dbb46a2f7a4cab208c4eeda6ce1ab" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-support", "frame-system", @@ -2848,12 +2848,12 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "Inflector", "array-bytes", "chrono", - "clap 4.0.17", + "clap 4.0.18", "comfy-table", "frame-benchmarking", "frame-support", @@ -2899,7 +2899,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2910,7 +2910,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2926,7 +2926,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-support", "frame-system", @@ -2955,7 +2955,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "bitflags", "frame-metadata", @@ -2987,7 +2987,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "Inflector", "cfg-expr", @@ -3001,7 +3001,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3013,7 +3013,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "proc-macro2", "quote", @@ -3023,7 +3023,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-support", "log", @@ -3041,7 +3041,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -3056,7 +3056,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "parity-scale-codec", "sp-api", @@ -3065,7 +3065,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-support", "parity-scale-codec", @@ -3925,8 +3925,8 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "beefy-primitives", "bitvec", @@ -4023,8 +4023,8 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "frame-support", "polkadot-primitives", @@ -5248,7 +5248,7 @@ checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64" [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5269,7 +5269,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" dependencies = [ "frame-support", "frame-system", @@ -5286,7 +5286,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5300,7 +5300,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" dependencies = [ "frame-support", "frame-system", @@ -5316,7 +5316,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-support", "frame-system", @@ -5332,7 +5332,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-support", "frame-system", @@ -5347,7 +5347,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -5371,7 +5371,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5391,7 +5391,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -5406,7 +5406,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "beefy-primitives", "frame-support", @@ -5422,7 +5422,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5445,7 +5445,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -5463,7 +5463,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -5507,7 +5507,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -5524,7 +5524,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" dependencies = [ "bitflags", "frame-benchmarking", @@ -5553,7 +5553,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" dependencies = [ "bitflags", "parity-scale-codec", @@ -5565,7 +5565,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" dependencies = [ "proc-macro2", "quote", @@ -5575,7 +5575,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5592,7 +5592,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -5610,7 +5610,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5634,7 +5634,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5647,7 +5647,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -5665,7 +5665,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5686,7 +5686,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -5701,7 +5701,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -5724,7 +5724,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5740,7 +5740,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -5760,7 +5760,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -5777,7 +5777,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -5794,7 +5794,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5812,7 +5812,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5827,7 +5827,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -5843,7 +5843,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-support", "frame-system", @@ -5860,7 +5860,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5880,7 +5880,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "parity-scale-codec", "sp-api", @@ -5890,7 +5890,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-support", "frame-system", @@ -5907,7 +5907,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5930,7 +5930,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -5947,7 +5947,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -5962,7 +5962,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" dependencies = [ "frame-support", "frame-system", @@ -5976,7 +5976,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -5994,7 +5994,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -6009,7 +6009,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6027,7 +6027,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -6043,7 +6043,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-support", "frame-system", @@ -6064,7 +6064,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -6080,7 +6080,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-support", "frame-system", @@ -6094,7 +6094,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6117,7 +6117,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6128,7 +6128,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "log", "sp-arithmetic", @@ -6137,7 +6137,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-support", "frame-system", @@ -6166,7 +6166,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -6184,7 +6184,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -6203,7 +6203,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-support", "frame-system", @@ -6219,7 +6219,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6234,7 +6234,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6245,7 +6245,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -6262,7 +6262,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6277,7 +6277,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -6293,7 +6293,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -6308,7 +6308,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-benchmarking", "frame-support", @@ -6322,8 +6322,8 @@ dependencies = [ [[package]] name = "pallet-xcm" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "frame-support", "frame-system", @@ -6340,8 +6340,8 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "frame-benchmarking", "frame-support", @@ -6370,7 +6370,7 @@ dependencies = [ name = "parachain-template-node" version = "0.1.0" dependencies = [ - "clap 4.0.17", + "clap 4.0.18", "cumulus-client-cli", "cumulus-client-consensus-aura", "cumulus-client-consensus-common", @@ -6461,7 +6461,7 @@ dependencies = [ "pallet-xcm", "parachain-info", "parity-scale-codec", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "polkadot-runtime-common", "scale-info", "smallvec", @@ -6722,7 +6722,7 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "polkadot-primitives", "polkadot-runtime-common", "scale-info", @@ -6894,8 +6894,8 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -6909,8 +6909,8 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -6923,8 +6923,8 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "derive_more", "fatality", @@ -6946,8 +6946,8 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "fatality", "futures", @@ -6967,10 +6967,10 @@ dependencies = [ [[package]] name = "polkadot-cli" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ - "clap 4.0.17", + "clap 4.0.18", "frame-benchmarking-cli", "futures", "log", @@ -6993,8 +6993,8 @@ dependencies = [ [[package]] name = "polkadot-client" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7034,8 +7034,8 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "always-assert", "bitvec", @@ -7056,8 +7056,8 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7069,8 +7069,8 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "derive_more", "fatality", @@ -7094,8 +7094,8 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7108,8 +7108,8 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "futures", "futures-timer", @@ -7128,8 +7128,8 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "always-assert", "async-trait", @@ -7152,8 +7152,8 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "futures", "parity-scale-codec", @@ -7170,8 +7170,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "bitvec", "derive_more", @@ -7199,8 +7199,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "bitvec", "futures", @@ -7219,8 +7219,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "bitvec", "fatality", @@ -7238,8 +7238,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7253,8 +7253,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "async-trait", "futures", @@ -7263,7 +7263,7 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "polkadot-primitives", "sp-maybe-compressed-blob", "tracing-gum", @@ -7271,8 +7271,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7286,8 +7286,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "futures", "futures-timer", @@ -7303,8 +7303,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "fatality", "futures", @@ -7322,8 +7322,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "async-trait", "futures", @@ -7339,8 +7339,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "bitvec", "fatality", @@ -7357,8 +7357,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "always-assert", "assert_matches", @@ -7370,7 +7370,7 @@ dependencies = [ "pin-project", "polkadot-core-primitives", "polkadot-node-metrics", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "rand 0.8.5", "rayon", "sc-executor", @@ -7389,8 +7389,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "futures", "polkadot-node-primitives", @@ -7405,8 +7405,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "futures", "memory-lru", @@ -7421,8 +7421,8 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "async-std", "lazy_static", @@ -7439,8 +7439,8 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "bs58", "futures", @@ -7458,8 +7458,8 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "async-trait", "derive_more", @@ -7481,13 +7481,13 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "bounded-vec", "futures", "parity-scale-codec", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "polkadot-primitives", "schnorrkel", "serde", @@ -7503,8 +7503,8 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7513,8 +7513,8 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "async-trait", "futures", @@ -7531,8 +7531,8 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "async-trait", "derive_more", @@ -7554,8 +7554,8 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "async-trait", "derive_more", @@ -7587,8 +7587,8 @@ dependencies = [ [[package]] name = "polkadot-overseer" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "async-trait", "futures", @@ -7610,8 +7610,8 @@ dependencies = [ [[package]] name = "polkadot-parachain" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "derive_more", "frame-support", @@ -7631,7 +7631,7 @@ version = "0.9.300" dependencies = [ "assert_cmd", "async-trait", - "clap 4.0.17", + "clap 4.0.18", "collectives-polkadot-runtime", "contracts-rococo-runtime", "cumulus-client-cli", @@ -7708,8 +7708,8 @@ dependencies = [ [[package]] name = "polkadot-performance-test" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7723,8 +7723,8 @@ dependencies = [ [[package]] name = "polkadot-primitives" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "bitvec", "frame-system", @@ -7732,7 +7732,7 @@ dependencies = [ "parity-scale-codec", "parity-util-mem", "polkadot-core-primitives", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "scale-info", "serde", "sp-api", @@ -7753,8 +7753,8 @@ dependencies = [ [[package]] name = "polkadot-rpc" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7785,8 +7785,8 @@ dependencies = [ [[package]] name = "polkadot-runtime" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "beefy-primitives", "bitvec", @@ -7874,8 +7874,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "beefy-primitives", "bitvec", @@ -7921,8 +7921,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "frame-support", "polkadot-primitives", @@ -7933,8 +7933,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "bs58", "parity-scale-codec", @@ -7945,8 +7945,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "bitflags", "bitvec", @@ -7988,8 +7988,8 @@ dependencies = [ [[package]] name = "polkadot-service" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "async-trait", "beefy-gadget", @@ -8035,7 +8035,7 @@ dependencies = [ "polkadot-node-subsystem-types", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "polkadot-primitives", "polkadot-rpc", "polkadot-runtime", @@ -8093,8 +8093,8 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8114,8 +8114,8 @@ dependencies = [ [[package]] name = "polkadot-statement-table" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8124,8 +8124,8 @@ dependencies = [ [[package]] name = "polkadot-test-client" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8149,8 +8149,8 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "beefy-primitives", "bitvec", @@ -8177,7 +8177,7 @@ dependencies = [ "pallet-vesting", "pallet-xcm", "parity-scale-codec", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "polkadot-primitives", "polkadot-runtime-common", "polkadot-runtime-parachains", @@ -8210,8 +8210,8 @@ dependencies = [ [[package]] name = "polkadot-test-service" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "frame-benchmarking", "frame-system", @@ -8223,7 +8223,7 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-overseer", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "polkadot-primitives", "polkadot-rpc", "polkadot-runtime-common", @@ -8790,7 +8790,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "env_logger 0.9.0", "log", @@ -8887,7 +8887,7 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "scale-info", "sp-api", "sp-block-builder", @@ -8908,8 +8908,8 @@ dependencies = [ [[package]] name = "rococo-runtime" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -8959,7 +8959,7 @@ dependencies = [ "pallet-xcm", "pallet-xcm-benchmarks", "parity-scale-codec", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "polkadot-primitives", "polkadot-runtime-common", "polkadot-runtime-parachains", @@ -8992,8 +8992,8 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "frame-support", "polkadot-primitives", @@ -9154,7 +9154,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "log", "sp-core", @@ -9165,7 +9165,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "async-trait", "futures", @@ -9192,7 +9192,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "futures", "futures-timer", @@ -9215,7 +9215,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9231,7 +9231,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9248,7 +9248,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9259,11 +9259,11 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "array-bytes", "chrono", - "clap 4.0.17", + "clap 4.0.18", "fdlimit", "futures", "libp2p", @@ -9299,7 +9299,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "fnv", "futures", @@ -9327,7 +9327,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "hash-db", "kvdb", @@ -9352,7 +9352,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "async-trait", "futures", @@ -9376,7 +9376,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" dependencies = [ "async-trait", "futures", @@ -9405,7 +9405,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "async-trait", "fork-tree", @@ -9447,7 +9447,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "futures", "jsonrpsee", @@ -9469,7 +9469,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9482,7 +9482,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "async-trait", "futures", @@ -9506,7 +9506,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9533,7 +9533,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "environmental", "parity-scale-codec", @@ -9549,7 +9549,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "log", "parity-scale-codec", @@ -9564,7 +9564,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9584,7 +9584,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "ahash", "array-bytes", @@ -9625,7 +9625,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "finality-grandpa", "futures", @@ -9646,7 +9646,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "ansi_term", "futures", @@ -9663,7 +9663,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "array-bytes", "async-trait", @@ -9678,7 +9678,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "array-bytes", "async-trait", @@ -9725,7 +9725,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "cid", "futures", @@ -9745,7 +9745,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "async-trait", "bitflags", @@ -9771,7 +9771,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "ahash", "futures", @@ -9789,7 +9789,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "array-bytes", "futures", @@ -9810,7 +9810,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "array-bytes", "fork-tree", @@ -9840,7 +9840,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "array-bytes", "futures", @@ -9859,7 +9859,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "array-bytes", "bytes", @@ -9889,7 +9889,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "futures", "libp2p", @@ -9902,7 +9902,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9911,7 +9911,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "futures", "hash-db", @@ -9941,7 +9941,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "futures", "jsonrpsee", @@ -9964,7 +9964,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "futures", "jsonrpsee", @@ -9977,7 +9977,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "futures", "hex", @@ -9996,7 +9996,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "async-trait", "directories", @@ -10067,7 +10067,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "log", "parity-scale-codec", @@ -10081,7 +10081,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10100,7 +10100,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "futures", "libc", @@ -10119,7 +10119,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "chrono", "futures", @@ -10137,7 +10137,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "ansi_term", "atty", @@ -10168,7 +10168,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10179,7 +10179,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "async-trait", "futures", @@ -10206,7 +10206,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "async-trait", "futures", @@ -10220,7 +10220,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "futures", "futures-timer", @@ -10637,8 +10637,8 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "enumn", "parity-scale-codec", @@ -10714,7 +10714,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "hash-db", "log", @@ -10732,7 +10732,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "blake2", "proc-macro-crate", @@ -10744,7 +10744,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "parity-scale-codec", "scale-info", @@ -10757,7 +10757,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "integer-sqrt", "num-traits", @@ -10772,7 +10772,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "parity-scale-codec", "scale-info", @@ -10785,7 +10785,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "async-trait", "parity-scale-codec", @@ -10797,7 +10797,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "parity-scale-codec", "sp-api", @@ -10809,7 +10809,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "futures", "log", @@ -10827,7 +10827,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "async-trait", "futures", @@ -10846,7 +10846,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" dependencies = [ "async-trait", "parity-scale-codec", @@ -10864,7 +10864,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "async-trait", "merlin", @@ -10887,7 +10887,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "parity-scale-codec", "scale-info", @@ -10901,7 +10901,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "parity-scale-codec", "scale-info", @@ -10914,7 +10914,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "array-bytes", "base58", @@ -10960,7 +10960,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "blake2", "byteorder", @@ -10974,7 +10974,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "proc-macro2", "quote", @@ -10985,7 +10985,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10994,7 +10994,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "proc-macro2", "quote", @@ -11004,7 +11004,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "environmental", "parity-scale-codec", @@ -11015,7 +11015,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "finality-grandpa", "log", @@ -11033,7 +11033,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11047,7 +11047,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "bytes", "futures", @@ -11073,7 +11073,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "lazy_static", "sp-core", @@ -11084,7 +11084,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "async-trait", "futures", @@ -11101,7 +11101,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "thiserror", "zstd", @@ -11110,7 +11110,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "log", "parity-scale-codec", @@ -11126,7 +11126,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "parity-scale-codec", "scale-info", @@ -11140,7 +11140,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "sp-api", "sp-core", @@ -11150,7 +11150,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "backtrace", "lazy_static", @@ -11160,7 +11160,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "rustc-hash", "serde", @@ -11170,7 +11170,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "either", "hash256-std-hasher", @@ -11193,7 +11193,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11211,7 +11211,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "Inflector", "proc-macro-crate", @@ -11223,7 +11223,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "log", "parity-scale-codec", @@ -11237,7 +11237,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" dependencies = [ "serde", "serde_json", @@ -11246,7 +11246,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "parity-scale-codec", "scale-info", @@ -11260,7 +11260,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "parity-scale-codec", "scale-info", @@ -11271,7 +11271,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "hash-db", "log", @@ -11293,12 +11293,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11311,7 +11311,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "log", "sp-core", @@ -11324,7 +11324,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "async-trait", "futures-timer", @@ -11340,7 +11340,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "parity-scale-codec", "sp-std", @@ -11352,7 +11352,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "sp-api", "sp-runtime", @@ -11361,7 +11361,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "async-trait", "log", @@ -11377,7 +11377,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "ahash", "hash-db", @@ -11400,7 +11400,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11417,7 +11417,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11428,7 +11428,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "impl-trait-for-tuples", "log", @@ -11441,7 +11441,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11535,7 +11535,7 @@ dependencies = [ "parachains-common", "parity-scale-codec", "polkadot-core-primitives", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "polkadot-runtime-common", "scale-info", "smallvec", @@ -11599,7 +11599,7 @@ dependencies = [ "parachains-common", "parity-scale-codec", "polkadot-core-primitives", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "polkadot-runtime-common", "polkadot-runtime-constants", "scale-info", @@ -11737,7 +11737,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "platforms", ] @@ -11745,7 +11745,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11766,7 +11766,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "futures-util", "hyper", @@ -11779,7 +11779,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "async-trait", "jsonrpsee", @@ -11792,7 +11792,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "jsonrpsee", "log", @@ -11813,7 +11813,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "array-bytes", "async-trait", @@ -11839,7 +11839,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11849,7 +11849,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11860,7 +11860,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ "ansi_term", "build-helper", @@ -11967,8 +11967,8 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "frame-support", "polkadot-primitives", @@ -12247,8 +12247,8 @@ dependencies = [ [[package]] name = "tracing-gum" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12258,8 +12258,8 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12386,9 +12386,9 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#f5ed51def33950ac24709eb11940790ca446421d" +source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" dependencies = [ - "clap 4.0.17", + "clap 4.0.18", "frame-try-runtime", "log", "parity-scale-codec", @@ -12974,8 +12974,8 @@ dependencies = [ [[package]] name = "westend-runtime" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "beefy-primitives", "bitvec", @@ -13030,7 +13030,7 @@ dependencies = [ "pallet-xcm", "pallet-xcm-benchmarks", "parity-scale-codec", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "polkadot-primitives", "polkadot-runtime-common", "polkadot-runtime-parachains", @@ -13064,8 +13064,8 @@ dependencies = [ [[package]] name = "westend-runtime-constants" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "frame-support", "polkadot-primitives", @@ -13117,7 +13117,7 @@ dependencies = [ "parachains-common", "parity-scale-codec", "polkadot-core-primitives", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "polkadot-runtime-common", "scale-info", "smallvec", @@ -13347,8 +13347,8 @@ dependencies = [ [[package]] name = "xcm" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13361,15 +13361,15 @@ dependencies = [ [[package]] name = "xcm-builder" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "frame-support", "frame-system", "log", "pallet-transaction-payment", "parity-scale-codec", - "polkadot-parachain 0.9.29", + "polkadot-parachain 0.9.31", "scale-info", "sp-arithmetic", "sp-io", @@ -13381,8 +13381,8 @@ dependencies = [ [[package]] name = "xcm-executor" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "frame-benchmarking", "frame-support", @@ -13399,8 +13399,8 @@ dependencies = [ [[package]] name = "xcm-procedural" -version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#e090658172daceaf144e4793ba3f60ff1831fb4a" +version = "0.9.31" +source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" dependencies = [ "Inflector", "proc-macro2", diff --git a/pallets/dmp-queue/src/lib.rs b/pallets/dmp-queue/src/lib.rs index 75ebe2c395..9238672806 100644 --- a/pallets/dmp-queue/src/lib.rs +++ b/pallets/dmp-queue/src/lib.rs @@ -38,6 +38,8 @@ use xcm::{ VersionedXcm, MAX_XCM_DECODE_DEPTH, }; +const DEFAULT_POV_SIZE: u64 = 64 * 1024; // 64 KB + #[derive(Copy, Clone, Eq, PartialEq, Encode, Decode, RuntimeDebug, TypeInfo)] pub struct ConfigData { /// The maximum amount of weight any individual message may consume. Messages above this weight @@ -49,7 +51,10 @@ pub struct ConfigData { impl Default for ConfigData { fn default() -> Self { Self { - max_individual: 10u64 * WEIGHT_PER_MILLIS, // 10 ms of execution time maximum by default + max_individual: Weight::from_parts( + 10u64 * WEIGHT_PER_MILLIS.ref_time(), // 10 ms of execution time maximum by default + DEFAULT_POV_SIZE, // 64 KB of proof size by default + ), } } } diff --git a/pallets/dmp-queue/src/migration.rs b/pallets/dmp-queue/src/migration.rs index cfd8a1f78e..8ecb9988d5 100644 --- a/pallets/dmp-queue/src/migration.rs +++ b/pallets/dmp-queue/src/migration.rs @@ -16,7 +16,7 @@ //! A module that is responsible for migration of storage. -use crate::{Config, Pallet, Store}; +use crate::{Config, Pallet, Store, DEFAULT_POV_SIZE}; use frame_support::{ pallet_prelude::*, traits::StorageVersion, @@ -63,7 +63,9 @@ mod v0 { /// `migrate_to_latest`. pub fn migrate_to_v1() -> Weight { let translate = |pre: v0::ConfigData| -> super::ConfigData { - super::ConfigData { max_individual: Weight::from_ref_time(pre.max_individual) } + super::ConfigData { + max_individual: Weight::from_parts(pre.max_individual, DEFAULT_POV_SIZE), + } }; if let Err(_) = as Store>::Configuration::translate(|pre| pre.map(translate)) { @@ -96,6 +98,7 @@ mod tests { let v1 = crate::Configuration::::get(); assert_eq!(v0.max_individual, v1.max_individual.ref_time()); + assert_eq!(v1.max_individual.proof_size(), DEFAULT_POV_SIZE); }); } } diff --git a/pallets/parachain-system/src/lib.rs b/pallets/parachain-system/src/lib.rs index 4bcae1ff59..3b685f5a27 100644 --- a/pallets/parachain-system/src/lib.rs +++ b/pallets/parachain-system/src/lib.rs @@ -141,6 +141,7 @@ pub mod pallet { #[pallet::pallet] #[pallet::storage_version(migration::STORAGE_VERSION)] + #[pallet::generate_store(pub(super) trait Store)] #[pallet::without_storage_info] pub struct Pallet(_); diff --git a/pallets/parachain-system/src/migration.rs b/pallets/parachain-system/src/migration.rs index f5eff920ae..514675b89a 100644 --- a/pallets/parachain-system/src/migration.rs +++ b/pallets/parachain-system/src/migration.rs @@ -14,18 +14,18 @@ // You should have received a copy of the GNU General Public License // along with Cumulus. If not, see . -use crate::{Config, Pallet}; +use crate::{Config, Pallet, Store}; use frame_support::{ traits::{Get, StorageVersion}, weights::Weight, }; /// The current storage version. -pub const STORAGE_VERSION: StorageVersion = StorageVersion::new(1); +pub const STORAGE_VERSION: StorageVersion = StorageVersion::new(2); /// Call this during the next runtime upgrade for this module. pub fn on_runtime_upgrade() -> Weight { - let mut weight: Weight = Weight::zero(); + let mut weight: Weight = T::DbWeight::get().reads(2); if StorageVersion::get::>() == 0 { weight = weight @@ -34,9 +34,46 @@ pub fn on_runtime_upgrade() -> Weight { StorageVersion::new(1).put::>(); } + if StorageVersion::get::>() == 1 { + weight = weight + .saturating_add(v2::migrate::()) + .saturating_add(T::DbWeight::get().writes(1)); + STORAGE_VERSION.put::>(); + } + weight } +/// V2: Migrate to 2D weights for ReservedXcmpWeightOverride and ReservedDmpWeightOverride. +mod v2 { + use super::*; + const DEFAULT_POV_SIZE: u64 = 64 * 1024; // 64 KB + + pub fn migrate() -> Weight { + let translate = |pre: u64| -> Weight { Weight::from_parts(pre, DEFAULT_POV_SIZE) }; + + if as Store>::ReservedXcmpWeightOverride::translate(|pre| pre.map(translate)) + .is_err() + { + log::error!( + target: "parachain_system", + "unexpected error when performing translation of the ReservedXcmpWeightOverride type during storage upgrade to v2" + ); + } + + if as Store>::ReservedDmpWeightOverride::translate(|pre| pre.map(translate)) + .is_err() + { + log::error!( + target: "parachain_system", + "unexpected error when performing translation of the ReservedDmpWeightOverride type during storage upgrade to v2" + ); + } + + T::DbWeight::get().reads_writes(2, 2) + } +} + /// V1: `LastUpgrade` block number is removed from the storage since the upgrade /// mechanism now uses signals instead of block offsets. mod v1 { diff --git a/pallets/xcmp-queue/src/lib.rs b/pallets/xcmp-queue/src/lib.rs index 6745e19221..a48f1283fa 100644 --- a/pallets/xcmp-queue/src/lib.rs +++ b/pallets/xcmp-queue/src/lib.rs @@ -66,6 +66,7 @@ pub use pallet::*; pub type OverweightIndex = u64; const LOG_TARGET: &str = "xcmp_queue"; +const DEFAULT_POV_SIZE: u64 = 64 * 1024; // 64 KB #[frame_support::pallet] pub mod pallet { @@ -462,7 +463,10 @@ impl Default for QueueConfigData { resume_threshold: 1, threshold_weight: Weight::from_ref_time(100_000), weight_restrict_decay: Weight::from_ref_time(2), - xcmp_max_individual_weight: 20u64 * WEIGHT_PER_MILLIS, + xcmp_max_individual_weight: Weight::from_parts( + 20u64 * WEIGHT_PER_MILLIS.ref_time(), + DEFAULT_POV_SIZE, + ), } } } diff --git a/pallets/xcmp-queue/src/migration.rs b/pallets/xcmp-queue/src/migration.rs index e44a053b76..94479fce8f 100644 --- a/pallets/xcmp-queue/src/migration.rs +++ b/pallets/xcmp-queue/src/migration.rs @@ -16,7 +16,7 @@ //! A module that is responsible for migration of storage. -use crate::{Config, Pallet, Store}; +use crate::{Config, Pallet, Store, DEFAULT_POV_SIZE}; use frame_support::{ pallet_prelude::*, traits::StorageVersion, @@ -81,7 +81,10 @@ pub fn migrate_to_v2() -> Weight { resume_threshold: pre.resume_threshold, threshold_weight: Weight::from_ref_time(pre.threshold_weight), weight_restrict_decay: Weight::from_ref_time(pre.weight_restrict_decay), - xcmp_max_individual_weight: Weight::from_ref_time(pre.xcmp_max_individual_weight), + xcmp_max_individual_weight: Weight::from_parts( + pre.xcmp_max_individual_weight, + DEFAULT_POV_SIZE, + ), } }; diff --git a/pallets/xcmp-queue/src/tests.rs b/pallets/xcmp-queue/src/tests.rs index 1586e313b5..a8cc11d29e 100644 --- a/pallets/xcmp-queue/src/tests.rs +++ b/pallets/xcmp-queue/src/tests.rs @@ -218,7 +218,10 @@ fn update_weight_restrict_decay_works() { fn update_xcmp_max_individual_weight() { new_test_ext().execute_with(|| { let data: QueueConfigData = >::get(); - assert_eq!(data.xcmp_max_individual_weight, 20u64 * WEIGHT_PER_MILLIS); + assert_eq!( + data.xcmp_max_individual_weight, + Weight::from_parts(20u64 * WEIGHT_PER_MILLIS.ref_time(), DEFAULT_POV_SIZE), + ); assert_ok!(XcmpQueue::update_xcmp_max_individual_weight( RuntimeOrigin::root(), 30u64 * WEIGHT_PER_MILLIS.ref_time() From 7c8d1f7a37bd07ade37ff5f6bd6cbe73347aab94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Thei=C3=9Fen?= Date: Mon, 24 Oct 2022 20:12:56 +0200 Subject: [PATCH 40/48] contracts: Companion for offchain indeterminism (#1794) * Adapt to new pallet contracts API * Fix * Fix runtime APIs * update lockfile for {"polkadot", "substrate"} Co-authored-by: parity-processbot <> --- Cargo.lock | 374 +++++++++--------- .../contracts/contracts-rococo/src/lib.rs | 9 +- 2 files changed, 195 insertions(+), 188 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 13da7074fc..a530bbf103 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "beefy-primitives", "sp-api", @@ -536,7 +536,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "parity-scale-codec", "scale-info", @@ -2802,7 +2802,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "parity-scale-codec", ] @@ -2825,7 +2825,7 @@ checksum = "85dcb89d2b10c5f6133de2efd8c11959ce9dbb46a2f7a4cab208c4eeda6ce1ab" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-support", "frame-system", @@ -2848,7 +2848,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "Inflector", "array-bytes", @@ -2899,7 +2899,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2910,7 +2910,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2926,7 +2926,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-support", "frame-system", @@ -2955,7 +2955,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "bitflags", "frame-metadata", @@ -2987,7 +2987,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "Inflector", "cfg-expr", @@ -3001,7 +3001,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3013,7 +3013,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "proc-macro2", "quote", @@ -3023,7 +3023,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-support", "log", @@ -3041,7 +3041,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -3056,7 +3056,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "parity-scale-codec", "sp-api", @@ -3065,7 +3065,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-support", "parity-scale-codec", @@ -5248,7 +5248,7 @@ checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64" [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5269,7 +5269,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-support", "frame-system", @@ -5286,7 +5286,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5300,7 +5300,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-support", "frame-system", @@ -5316,7 +5316,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-support", "frame-system", @@ -5332,7 +5332,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-support", "frame-system", @@ -5347,7 +5347,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5371,7 +5371,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5391,7 +5391,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5406,7 +5406,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "beefy-primitives", "frame-support", @@ -5422,7 +5422,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5445,7 +5445,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5463,7 +5463,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5507,7 +5507,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5524,7 +5524,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "bitflags", "frame-benchmarking", @@ -5553,7 +5553,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "bitflags", "parity-scale-codec", @@ -5565,7 +5565,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "proc-macro2", "quote", @@ -5575,7 +5575,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5592,7 +5592,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5610,7 +5610,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5634,7 +5634,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5647,7 +5647,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5665,7 +5665,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5686,7 +5686,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5701,7 +5701,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5724,7 +5724,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5740,7 +5740,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5760,7 +5760,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5777,7 +5777,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5794,7 +5794,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5812,7 +5812,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5827,7 +5827,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5843,7 +5843,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-support", "frame-system", @@ -5860,7 +5860,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5880,7 +5880,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "parity-scale-codec", "sp-api", @@ -5890,7 +5890,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-support", "frame-system", @@ -5907,7 +5907,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5930,7 +5930,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5947,7 +5947,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5962,7 +5962,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-support", "frame-system", @@ -5976,7 +5976,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5994,7 +5994,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6009,7 +6009,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6027,7 +6027,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6043,7 +6043,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-support", "frame-system", @@ -6064,7 +6064,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6080,7 +6080,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-support", "frame-system", @@ -6094,7 +6094,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6117,7 +6117,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6128,7 +6128,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "log", "sp-arithmetic", @@ -6137,7 +6137,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-support", "frame-system", @@ -6166,7 +6166,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6184,7 +6184,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6203,7 +6203,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-support", "frame-system", @@ -6219,7 +6219,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6234,7 +6234,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6245,7 +6245,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6262,7 +6262,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6277,7 +6277,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6293,7 +6293,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6308,7 +6308,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-benchmarking", "frame-support", @@ -8790,7 +8790,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "env_logger 0.9.0", "log", @@ -9154,7 +9154,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "log", "sp-core", @@ -9165,7 +9165,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "async-trait", "futures", @@ -9192,7 +9192,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "futures", "futures-timer", @@ -9215,7 +9215,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9231,7 +9231,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9248,7 +9248,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9259,7 +9259,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "array-bytes", "chrono", @@ -9299,7 +9299,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "fnv", "futures", @@ -9327,7 +9327,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "hash-db", "kvdb", @@ -9352,7 +9352,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "async-trait", "futures", @@ -9376,7 +9376,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "async-trait", "futures", @@ -9405,7 +9405,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "async-trait", "fork-tree", @@ -9447,7 +9447,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "futures", "jsonrpsee", @@ -9469,7 +9469,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9482,7 +9482,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "async-trait", "futures", @@ -9506,7 +9506,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9533,7 +9533,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "environmental", "parity-scale-codec", @@ -9549,7 +9549,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "log", "parity-scale-codec", @@ -9564,7 +9564,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9584,7 +9584,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "ahash", "array-bytes", @@ -9625,7 +9625,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "finality-grandpa", "futures", @@ -9646,7 +9646,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "ansi_term", "futures", @@ -9663,7 +9663,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "array-bytes", "async-trait", @@ -9678,7 +9678,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "array-bytes", "async-trait", @@ -9725,7 +9725,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "cid", "futures", @@ -9745,7 +9745,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "async-trait", "bitflags", @@ -9771,7 +9771,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "ahash", "futures", @@ -9789,7 +9789,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "array-bytes", "futures", @@ -9810,7 +9810,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "array-bytes", "fork-tree", @@ -9840,7 +9840,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "array-bytes", "futures", @@ -9859,7 +9859,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "array-bytes", "bytes", @@ -9889,7 +9889,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "futures", "libp2p", @@ -9902,7 +9902,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9911,7 +9911,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "futures", "hash-db", @@ -9941,7 +9941,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "futures", "jsonrpsee", @@ -9964,7 +9964,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "futures", "jsonrpsee", @@ -9977,7 +9977,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "futures", "hex", @@ -9996,7 +9996,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "async-trait", "directories", @@ -10067,7 +10067,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "log", "parity-scale-codec", @@ -10081,7 +10081,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10100,7 +10100,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "futures", "libc", @@ -10119,7 +10119,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "chrono", "futures", @@ -10137,7 +10137,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "ansi_term", "atty", @@ -10168,7 +10168,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10179,7 +10179,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "async-trait", "futures", @@ -10206,7 +10206,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "async-trait", "futures", @@ -10220,7 +10220,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "futures", "futures-timer", @@ -10714,7 +10714,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "hash-db", "log", @@ -10732,7 +10732,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "blake2", "proc-macro-crate", @@ -10744,7 +10744,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "parity-scale-codec", "scale-info", @@ -10757,7 +10757,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "integer-sqrt", "num-traits", @@ -10772,7 +10772,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "parity-scale-codec", "scale-info", @@ -10785,7 +10785,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "async-trait", "parity-scale-codec", @@ -10797,7 +10797,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "parity-scale-codec", "sp-api", @@ -10809,7 +10809,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "futures", "log", @@ -10827,7 +10827,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "async-trait", "futures", @@ -10846,7 +10846,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "async-trait", "parity-scale-codec", @@ -10864,7 +10864,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "async-trait", "merlin", @@ -10887,7 +10887,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "parity-scale-codec", "scale-info", @@ -10901,7 +10901,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "parity-scale-codec", "scale-info", @@ -10914,7 +10914,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "array-bytes", "base58", @@ -10960,7 +10960,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "blake2", "byteorder", @@ -10974,7 +10974,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "proc-macro2", "quote", @@ -10985,7 +10985,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10994,7 +10994,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "proc-macro2", "quote", @@ -11004,7 +11004,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "environmental", "parity-scale-codec", @@ -11015,7 +11015,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "finality-grandpa", "log", @@ -11033,7 +11033,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11047,7 +11047,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "bytes", "futures", @@ -11073,7 +11073,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "lazy_static", "sp-core", @@ -11084,7 +11084,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "async-trait", "futures", @@ -11101,7 +11101,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "thiserror", "zstd", @@ -11110,7 +11110,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "log", "parity-scale-codec", @@ -11126,7 +11126,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "parity-scale-codec", "scale-info", @@ -11140,7 +11140,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "sp-api", "sp-core", @@ -11150,7 +11150,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "backtrace", "lazy_static", @@ -11160,7 +11160,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "rustc-hash", "serde", @@ -11170,7 +11170,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "either", "hash256-std-hasher", @@ -11193,7 +11193,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11211,7 +11211,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "Inflector", "proc-macro-crate", @@ -11223,7 +11223,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "log", "parity-scale-codec", @@ -11237,7 +11237,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "serde", "serde_json", @@ -11246,7 +11246,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "parity-scale-codec", "scale-info", @@ -11260,7 +11260,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "parity-scale-codec", "scale-info", @@ -11271,7 +11271,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "hash-db", "log", @@ -11293,12 +11293,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11311,7 +11311,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "log", "sp-core", @@ -11324,7 +11324,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "async-trait", "futures-timer", @@ -11340,7 +11340,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "parity-scale-codec", "sp-std", @@ -11352,7 +11352,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "sp-api", "sp-runtime", @@ -11361,7 +11361,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "async-trait", "log", @@ -11377,7 +11377,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "ahash", "hash-db", @@ -11400,7 +11400,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11417,7 +11417,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11428,7 +11428,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "impl-trait-for-tuples", "log", @@ -11441,7 +11441,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11737,7 +11737,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "platforms", ] @@ -11745,7 +11745,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11766,7 +11766,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "futures-util", "hyper", @@ -11779,7 +11779,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "async-trait", "jsonrpsee", @@ -11792,7 +11792,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "jsonrpsee", "log", @@ -11813,7 +11813,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "array-bytes", "async-trait", @@ -11839,7 +11839,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11849,7 +11849,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4d29da2156d587a6b8e4efbe10e412efaedbbd4e" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11860,7 +11860,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "ansi_term", "build-helper", @@ -12386,7 +12386,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3bbdba405d42d7023eeb297efb03a3ec4ccf9563" +source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" dependencies = [ "clap 4.0.18", "frame-try-runtime", diff --git a/parachains/runtimes/contracts/contracts-rococo/src/lib.rs b/parachains/runtimes/contracts/contracts-rococo/src/lib.rs index 579801078a..ce372a6a86 100644 --- a/parachains/runtimes/contracts/contracts-rococo/src/lib.rs +++ b/parachains/runtimes/contracts/contracts-rococo/src/lib.rs @@ -524,6 +524,7 @@ impl_runtime_apis! { storage_deposit_limit, input_data, contracts::CONTRACTS_DEBUG_OUTPUT, + pallet_contracts::Determinism::Deterministic, ) } @@ -553,8 +554,14 @@ impl_runtime_apis! { origin: AccountId, code: Vec, storage_deposit_limit: Option, + determinism: pallet_contracts::Determinism, ) -> pallet_contracts_primitives::CodeUploadResult { - Contracts::bare_upload_code(origin, code, storage_deposit_limit) + Contracts::bare_upload_code( + origin, + code, + storage_deposit_limit, + determinism, + ) } fn get_storage( From 3b73200c9e470c4d33f56bcb257589e80c38f987 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Oct 2022 08:43:37 +0200 Subject: [PATCH 41/48] Bump assert_cmd from 2.0.4 to 2.0.5 (#1800) Bumps [assert_cmd](https://github.com/assert-rs/assert_cmd) from 2.0.4 to 2.0.5. - [Release notes](https://github.com/assert-rs/assert_cmd/releases) - [Changelog](https://github.com/assert-rs/assert_cmd/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/assert_cmd/compare/v2.0.4...v2.0.5) --- updated-dependencies: - dependency-name: assert_cmd dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a530bbf103..f689334f5c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -159,9 +159,9 @@ checksum = "e22d1f4b888c298a027c99dc9048015fac177587de20fc30232a057dfbe24a21" [[package]] name = "assert_cmd" -version = "2.0.4" +version = "2.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93ae1ddd39efd67689deb1979d80bad3bf7f2b09c6e6117c8d1f2443b5e2f83e" +checksum = "d5c2ca00549910ec251e3bd15f87aeeb206c9456b9a77b43ff6c97c54042a472" dependencies = [ "bstr", "doc-comment", From bdfd71088fe651ba1577c0e48335cee823cd77e4 Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi Date: Tue, 25 Oct 2022 15:49:33 -0400 Subject: [PATCH 42/48] Companion for #12457 (Bounded Multisig) (#1793) * u16 -> u32 * update lockfile for {"polkadot", "substrate"} Co-authored-by: parity-processbot <> --- Cargo.lock | 506 +++++++++--------- .../runtimes/assets/statemine/src/lib.rs | 2 +- .../runtimes/assets/statemint/src/lib.rs | 2 +- .../runtimes/assets/westmint/src/lib.rs | 2 +- .../collectives-polkadot/src/lib.rs | 2 +- .../contracts/contracts-rococo/src/lib.rs | 2 +- 6 files changed, 258 insertions(+), 258 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f689334f5c..46dc2bd4ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "beefy-primitives", "sp-api", @@ -536,7 +536,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "parity-scale-codec", "scale-info", @@ -2802,7 +2802,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "parity-scale-codec", ] @@ -2825,7 +2825,7 @@ checksum = "85dcb89d2b10c5f6133de2efd8c11959ce9dbb46a2f7a4cab208c4eeda6ce1ab" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-support", "frame-system", @@ -2848,7 +2848,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "Inflector", "array-bytes", @@ -2899,7 +2899,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2910,7 +2910,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2926,7 +2926,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-support", "frame-system", @@ -2955,7 +2955,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "bitflags", "frame-metadata", @@ -2987,7 +2987,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "Inflector", "cfg-expr", @@ -3001,7 +3001,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3013,7 +3013,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "proc-macro2", "quote", @@ -3023,7 +3023,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-support", "log", @@ -3041,7 +3041,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -3056,7 +3056,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "parity-scale-codec", "sp-api", @@ -3065,7 +3065,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-support", "parity-scale-codec", @@ -3926,7 +3926,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "beefy-primitives", "bitvec", @@ -4024,7 +4024,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "frame-support", "polkadot-primitives", @@ -5248,7 +5248,7 @@ checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64" [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5269,7 +5269,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-support", "frame-system", @@ -5286,7 +5286,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5300,7 +5300,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-support", "frame-system", @@ -5316,7 +5316,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-support", "frame-system", @@ -5332,7 +5332,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-support", "frame-system", @@ -5347,7 +5347,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5371,7 +5371,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5391,7 +5391,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5406,7 +5406,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "beefy-primitives", "frame-support", @@ -5422,7 +5422,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5445,7 +5445,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5463,7 +5463,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5507,7 +5507,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5524,7 +5524,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "bitflags", "frame-benchmarking", @@ -5553,7 +5553,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "bitflags", "parity-scale-codec", @@ -5565,7 +5565,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "proc-macro2", "quote", @@ -5575,7 +5575,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5592,7 +5592,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5610,7 +5610,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5634,7 +5634,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5647,7 +5647,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5665,7 +5665,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5686,7 +5686,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5701,7 +5701,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5724,7 +5724,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5740,7 +5740,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5760,7 +5760,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5777,7 +5777,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5794,7 +5794,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5812,7 +5812,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5827,7 +5827,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5843,7 +5843,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-support", "frame-system", @@ -5860,7 +5860,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5880,7 +5880,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "parity-scale-codec", "sp-api", @@ -5890,7 +5890,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-support", "frame-system", @@ -5907,7 +5907,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5930,7 +5930,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5947,7 +5947,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5962,7 +5962,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-support", "frame-system", @@ -5976,7 +5976,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -5994,7 +5994,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6009,7 +6009,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6027,7 +6027,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6043,7 +6043,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-support", "frame-system", @@ -6064,7 +6064,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6080,7 +6080,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-support", "frame-system", @@ -6094,7 +6094,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6117,7 +6117,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6128,7 +6128,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "log", "sp-arithmetic", @@ -6137,7 +6137,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-support", "frame-system", @@ -6166,7 +6166,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6184,7 +6184,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6203,7 +6203,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-support", "frame-system", @@ -6219,7 +6219,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6234,7 +6234,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6245,7 +6245,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6262,7 +6262,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6277,7 +6277,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6293,7 +6293,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6308,7 +6308,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-benchmarking", "frame-support", @@ -6323,7 +6323,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "frame-support", "frame-system", @@ -6341,7 +6341,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "frame-benchmarking", "frame-support", @@ -6895,7 +6895,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -6910,7 +6910,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -6924,7 +6924,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "derive_more", "fatality", @@ -6947,7 +6947,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "fatality", "futures", @@ -6968,7 +6968,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "clap 4.0.18", "frame-benchmarking-cli", @@ -6994,7 +6994,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7035,7 +7035,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "always-assert", "bitvec", @@ -7057,7 +7057,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7070,7 +7070,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "derive_more", "fatality", @@ -7095,7 +7095,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7109,7 +7109,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "futures", "futures-timer", @@ -7129,7 +7129,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "always-assert", "async-trait", @@ -7153,7 +7153,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "futures", "parity-scale-codec", @@ -7171,7 +7171,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "bitvec", "derive_more", @@ -7200,7 +7200,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "bitvec", "futures", @@ -7220,7 +7220,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "bitvec", "fatality", @@ -7239,7 +7239,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7254,7 +7254,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "async-trait", "futures", @@ -7272,7 +7272,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7287,7 +7287,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "futures", "futures-timer", @@ -7304,7 +7304,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "fatality", "futures", @@ -7323,7 +7323,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "async-trait", "futures", @@ -7340,7 +7340,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "bitvec", "fatality", @@ -7358,7 +7358,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "always-assert", "assert_matches", @@ -7390,7 +7390,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "futures", "polkadot-node-primitives", @@ -7406,7 +7406,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "futures", "memory-lru", @@ -7422,7 +7422,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "async-std", "lazy_static", @@ -7440,7 +7440,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "bs58", "futures", @@ -7459,7 +7459,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "async-trait", "derive_more", @@ -7482,7 +7482,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "bounded-vec", "futures", @@ -7504,7 +7504,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7514,7 +7514,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "async-trait", "futures", @@ -7532,7 +7532,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "async-trait", "derive_more", @@ -7555,7 +7555,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "async-trait", "derive_more", @@ -7588,7 +7588,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "async-trait", "futures", @@ -7611,7 +7611,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "derive_more", "frame-support", @@ -7709,7 +7709,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7724,7 +7724,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "bitvec", "frame-system", @@ -7754,7 +7754,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7786,7 +7786,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "beefy-primitives", "bitvec", @@ -7875,7 +7875,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "beefy-primitives", "bitvec", @@ -7922,7 +7922,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "frame-support", "polkadot-primitives", @@ -7934,7 +7934,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "bs58", "parity-scale-codec", @@ -7946,7 +7946,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "bitflags", "bitvec", @@ -7989,7 +7989,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "async-trait", "beefy-gadget", @@ -8094,7 +8094,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8115,7 +8115,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8125,7 +8125,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8150,7 +8150,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "beefy-primitives", "bitvec", @@ -8211,7 +8211,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "frame-benchmarking", "frame-system", @@ -8790,7 +8790,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "env_logger 0.9.0", "log", @@ -8909,7 +8909,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -8993,7 +8993,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "frame-support", "polkadot-primitives", @@ -9154,7 +9154,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "log", "sp-core", @@ -9165,7 +9165,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "async-trait", "futures", @@ -9192,7 +9192,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "futures", "futures-timer", @@ -9215,7 +9215,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9231,7 +9231,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9248,7 +9248,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9259,7 +9259,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "array-bytes", "chrono", @@ -9299,7 +9299,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "fnv", "futures", @@ -9327,7 +9327,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "hash-db", "kvdb", @@ -9352,7 +9352,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "async-trait", "futures", @@ -9376,7 +9376,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "async-trait", "futures", @@ -9405,7 +9405,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "async-trait", "fork-tree", @@ -9447,7 +9447,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "futures", "jsonrpsee", @@ -9469,7 +9469,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9482,7 +9482,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "async-trait", "futures", @@ -9506,7 +9506,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9533,7 +9533,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "environmental", "parity-scale-codec", @@ -9549,7 +9549,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "log", "parity-scale-codec", @@ -9564,7 +9564,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9584,7 +9584,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "ahash", "array-bytes", @@ -9625,7 +9625,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "finality-grandpa", "futures", @@ -9646,7 +9646,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "ansi_term", "futures", @@ -9663,7 +9663,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "array-bytes", "async-trait", @@ -9678,7 +9678,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "array-bytes", "async-trait", @@ -9725,7 +9725,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "cid", "futures", @@ -9745,7 +9745,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "async-trait", "bitflags", @@ -9771,7 +9771,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "ahash", "futures", @@ -9789,7 +9789,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "array-bytes", "futures", @@ -9810,7 +9810,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "array-bytes", "fork-tree", @@ -9840,7 +9840,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "array-bytes", "futures", @@ -9859,7 +9859,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "array-bytes", "bytes", @@ -9889,7 +9889,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "futures", "libp2p", @@ -9902,7 +9902,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9911,7 +9911,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "futures", "hash-db", @@ -9941,7 +9941,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "futures", "jsonrpsee", @@ -9964,7 +9964,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "futures", "jsonrpsee", @@ -9977,7 +9977,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "futures", "hex", @@ -9996,7 +9996,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "async-trait", "directories", @@ -10067,7 +10067,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "log", "parity-scale-codec", @@ -10081,7 +10081,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10100,7 +10100,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "futures", "libc", @@ -10119,7 +10119,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "chrono", "futures", @@ -10137,7 +10137,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "ansi_term", "atty", @@ -10168,7 +10168,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10179,7 +10179,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "async-trait", "futures", @@ -10206,7 +10206,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "async-trait", "futures", @@ -10220,7 +10220,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "futures", "futures-timer", @@ -10638,7 +10638,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "enumn", "parity-scale-codec", @@ -10714,7 +10714,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "hash-db", "log", @@ -10732,7 +10732,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "blake2", "proc-macro-crate", @@ -10744,7 +10744,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "parity-scale-codec", "scale-info", @@ -10757,7 +10757,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "integer-sqrt", "num-traits", @@ -10772,7 +10772,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "parity-scale-codec", "scale-info", @@ -10785,7 +10785,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "async-trait", "parity-scale-codec", @@ -10797,7 +10797,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "parity-scale-codec", "sp-api", @@ -10809,7 +10809,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "futures", "log", @@ -10827,7 +10827,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "async-trait", "futures", @@ -10846,7 +10846,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "async-trait", "parity-scale-codec", @@ -10864,7 +10864,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "async-trait", "merlin", @@ -10887,7 +10887,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "parity-scale-codec", "scale-info", @@ -10901,7 +10901,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "parity-scale-codec", "scale-info", @@ -10914,7 +10914,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "array-bytes", "base58", @@ -10960,7 +10960,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "blake2", "byteorder", @@ -10974,7 +10974,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "proc-macro2", "quote", @@ -10985,7 +10985,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10994,7 +10994,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "proc-macro2", "quote", @@ -11004,7 +11004,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "environmental", "parity-scale-codec", @@ -11015,7 +11015,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "finality-grandpa", "log", @@ -11033,7 +11033,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11047,7 +11047,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "bytes", "futures", @@ -11073,7 +11073,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "lazy_static", "sp-core", @@ -11084,7 +11084,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "async-trait", "futures", @@ -11101,7 +11101,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "thiserror", "zstd", @@ -11110,7 +11110,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "log", "parity-scale-codec", @@ -11126,7 +11126,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "parity-scale-codec", "scale-info", @@ -11140,7 +11140,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "sp-api", "sp-core", @@ -11150,7 +11150,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "backtrace", "lazy_static", @@ -11160,7 +11160,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "rustc-hash", "serde", @@ -11170,7 +11170,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "either", "hash256-std-hasher", @@ -11193,7 +11193,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11211,7 +11211,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "Inflector", "proc-macro-crate", @@ -11223,7 +11223,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "log", "parity-scale-codec", @@ -11237,7 +11237,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "serde", "serde_json", @@ -11246,7 +11246,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "parity-scale-codec", "scale-info", @@ -11260,7 +11260,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "parity-scale-codec", "scale-info", @@ -11271,7 +11271,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "hash-db", "log", @@ -11293,12 +11293,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11311,7 +11311,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "log", "sp-core", @@ -11324,7 +11324,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "async-trait", "futures-timer", @@ -11340,7 +11340,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "parity-scale-codec", "sp-std", @@ -11352,7 +11352,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "sp-api", "sp-runtime", @@ -11361,7 +11361,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "async-trait", "log", @@ -11377,7 +11377,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "ahash", "hash-db", @@ -11400,7 +11400,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11417,7 +11417,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11428,7 +11428,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "impl-trait-for-tuples", "log", @@ -11441,7 +11441,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11737,7 +11737,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "platforms", ] @@ -11745,7 +11745,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11766,7 +11766,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "futures-util", "hyper", @@ -11779,7 +11779,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "async-trait", "jsonrpsee", @@ -11792,7 +11792,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "jsonrpsee", "log", @@ -11813,7 +11813,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "array-bytes", "async-trait", @@ -11839,7 +11839,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11849,7 +11849,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11860,7 +11860,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "ansi_term", "build-helper", @@ -11968,7 +11968,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "frame-support", "polkadot-primitives", @@ -12248,7 +12248,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12259,7 +12259,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12386,7 +12386,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#433a6f725c56403d09ecde838c5509059df92e3e" +source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" dependencies = [ "clap 4.0.18", "frame-try-runtime", @@ -12975,7 +12975,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "beefy-primitives", "bitvec", @@ -13065,7 +13065,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "frame-support", "polkadot-primitives", @@ -13348,7 +13348,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13362,7 +13362,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "frame-support", "frame-system", @@ -13382,7 +13382,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "frame-benchmarking", "frame-support", @@ -13400,7 +13400,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#f610ffc05876d4b98a14cee245b4cc27bd3c0c15" +source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" dependencies = [ "Inflector", "proc-macro2", diff --git a/parachains/runtimes/assets/statemine/src/lib.rs b/parachains/runtimes/assets/statemine/src/lib.rs index c17ebf8282..4e60a36686 100644 --- a/parachains/runtimes/assets/statemine/src/lib.rs +++ b/parachains/runtimes/assets/statemine/src/lib.rs @@ -250,7 +250,7 @@ parameter_types! { pub const DepositBase: Balance = deposit(1, 88); // Additional storage item size of 32 bytes. pub const DepositFactor: Balance = deposit(0, 32); - pub const MaxSignatories: u16 = 100; + pub const MaxSignatories: u32 = 100; } impl pallet_multisig::Config for Runtime { diff --git a/parachains/runtimes/assets/statemint/src/lib.rs b/parachains/runtimes/assets/statemint/src/lib.rs index 2f3a308ace..2afa178771 100644 --- a/parachains/runtimes/assets/statemint/src/lib.rs +++ b/parachains/runtimes/assets/statemint/src/lib.rs @@ -280,7 +280,7 @@ parameter_types! { pub const DepositBase: Balance = deposit(1, 88); // Additional storage item size of 32 bytes. pub const DepositFactor: Balance = deposit(0, 32); - pub const MaxSignatories: u16 = 100; + pub const MaxSignatories: u32 = 100; } impl pallet_multisig::Config for Runtime { diff --git a/parachains/runtimes/assets/westmint/src/lib.rs b/parachains/runtimes/assets/westmint/src/lib.rs index d9770aef14..96b203d4ab 100644 --- a/parachains/runtimes/assets/westmint/src/lib.rs +++ b/parachains/runtimes/assets/westmint/src/lib.rs @@ -245,7 +245,7 @@ parameter_types! { pub const DepositBase: Balance = deposit(1, 88); // Additional storage item size of 32 bytes. pub const DepositFactor: Balance = deposit(0, 32); - pub const MaxSignatories: u16 = 100; + pub const MaxSignatories: u32 = 100; } impl pallet_multisig::Config for Runtime { diff --git a/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs b/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs index 4b18df36fe..3d97557f0f 100644 --- a/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs +++ b/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs @@ -239,7 +239,7 @@ impl pallet_multisig::Config for Runtime { type Currency = Balances; type DepositBase = DepositBase; type DepositFactor = DepositFactor; - type MaxSignatories = ConstU16<100>; + type MaxSignatories = ConstU32<100>; type WeightInfo = weights::pallet_multisig::WeightInfo; } diff --git a/parachains/runtimes/contracts/contracts-rococo/src/lib.rs b/parachains/runtimes/contracts/contracts-rococo/src/lib.rs index ce372a6a86..ca1066f859 100644 --- a/parachains/runtimes/contracts/contracts-rococo/src/lib.rs +++ b/parachains/runtimes/contracts/contracts-rococo/src/lib.rs @@ -235,7 +235,7 @@ impl pallet_multisig::Config for Runtime { type Currency = Balances; type DepositBase = DepositBase; type DepositFactor = DepositFactor; - type MaxSignatories = ConstU16<100>; + type MaxSignatories = ConstU32<100>; type WeightInfo = pallet_multisig::weights::SubstrateWeight; } From 53d8651f6b8b18067af3668560e48028cd21f495 Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Thu, 27 Oct 2022 00:29:27 +0200 Subject: [PATCH 43/48] Co #12558: Update `pallet-multisig` benches (#1805) * Typo Signed-off-by: Oliver Tale-Yazdi * Add multisig weights Signed-off-by: Oliver Tale-Yazdi * cargo update -p polkadot-runtime-common Signed-off-by: Oliver Tale-Yazdi Signed-off-by: Oliver Tale-Yazdi --- Cargo.lock | 478 +++++++++--------- .../statemine/src/weights/pallet_multisig.rs | 121 ++--- .../statemint/src/weights/pallet_multisig.rs | 121 ++--- .../westmint/src/weights/pallet_multisig.rs | 121 ++--- .../src/weights/pallet_multisig.rs | 121 ++--- test/relay-sproof-builder/src/lib.rs | 2 +- 6 files changed, 412 insertions(+), 552 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 46dc2bd4ad..009236aafc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "beefy-primitives", "sp-api", @@ -536,7 +536,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "parity-scale-codec", "scale-info", @@ -2802,7 +2802,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "parity-scale-codec", ] @@ -2825,7 +2825,7 @@ checksum = "85dcb89d2b10c5f6133de2efd8c11959ce9dbb46a2f7a4cab208c4eeda6ce1ab" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-support", "frame-system", @@ -2848,7 +2848,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "Inflector", "array-bytes", @@ -2899,7 +2899,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2910,7 +2910,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2926,7 +2926,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-support", "frame-system", @@ -2955,7 +2955,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "bitflags", "frame-metadata", @@ -2987,7 +2987,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "Inflector", "cfg-expr", @@ -3001,7 +3001,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3013,7 +3013,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "proc-macro2", "quote", @@ -3023,7 +3023,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-support", "log", @@ -3041,7 +3041,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -3056,7 +3056,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "parity-scale-codec", "sp-api", @@ -3065,7 +3065,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-support", "parity-scale-codec", @@ -3926,7 +3926,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "beefy-primitives", "bitvec", @@ -4024,7 +4024,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "frame-support", "polkadot-primitives", @@ -5316,7 +5316,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-support", "frame-system", @@ -5332,7 +5332,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-support", "frame-system", @@ -5347,7 +5347,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5371,7 +5371,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5391,7 +5391,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5406,7 +5406,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "beefy-primitives", "frame-support", @@ -5422,7 +5422,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5445,7 +5445,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5463,7 +5463,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5507,7 +5507,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5575,7 +5575,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5592,7 +5592,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5610,7 +5610,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5634,7 +5634,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5647,7 +5647,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5665,7 +5665,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5686,7 +5686,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5701,7 +5701,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5724,7 +5724,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5740,7 +5740,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5760,7 +5760,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5777,7 +5777,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5794,7 +5794,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5812,7 +5812,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5827,7 +5827,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5843,7 +5843,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-support", "frame-system", @@ -5860,7 +5860,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5880,7 +5880,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "parity-scale-codec", "sp-api", @@ -5890,7 +5890,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-support", "frame-system", @@ -5907,7 +5907,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5930,7 +5930,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5947,7 +5947,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5976,7 +5976,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5994,7 +5994,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6009,7 +6009,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6027,7 +6027,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6043,7 +6043,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-support", "frame-system", @@ -6064,7 +6064,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6080,7 +6080,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-support", "frame-system", @@ -6094,7 +6094,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6117,7 +6117,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6128,7 +6128,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "log", "sp-arithmetic", @@ -6137,7 +6137,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-support", "frame-system", @@ -6166,7 +6166,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6184,7 +6184,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6203,7 +6203,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-support", "frame-system", @@ -6219,7 +6219,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6234,7 +6234,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6245,7 +6245,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6277,7 +6277,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6293,7 +6293,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6308,7 +6308,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6323,7 +6323,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "frame-support", "frame-system", @@ -6341,7 +6341,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6895,7 +6895,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -6910,7 +6910,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -6924,7 +6924,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "derive_more", "fatality", @@ -6947,7 +6947,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "fatality", "futures", @@ -6968,7 +6968,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "clap 4.0.18", "frame-benchmarking-cli", @@ -6994,7 +6994,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7035,7 +7035,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "always-assert", "bitvec", @@ -7057,7 +7057,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7070,7 +7070,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "derive_more", "fatality", @@ -7095,7 +7095,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7109,7 +7109,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "futures", "futures-timer", @@ -7129,7 +7129,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "always-assert", "async-trait", @@ -7153,7 +7153,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "futures", "parity-scale-codec", @@ -7171,7 +7171,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "bitvec", "derive_more", @@ -7200,7 +7200,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "bitvec", "futures", @@ -7220,7 +7220,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "bitvec", "fatality", @@ -7239,7 +7239,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7254,7 +7254,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "async-trait", "futures", @@ -7272,7 +7272,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7287,7 +7287,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "futures", "futures-timer", @@ -7304,7 +7304,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "fatality", "futures", @@ -7323,7 +7323,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "async-trait", "futures", @@ -7340,7 +7340,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "bitvec", "fatality", @@ -7358,7 +7358,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "always-assert", "assert_matches", @@ -7390,7 +7390,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "futures", "polkadot-node-primitives", @@ -7406,7 +7406,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "futures", "memory-lru", @@ -7422,7 +7422,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "async-std", "lazy_static", @@ -7440,7 +7440,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "bs58", "futures", @@ -7459,7 +7459,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "async-trait", "derive_more", @@ -7482,7 +7482,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "bounded-vec", "futures", @@ -7504,7 +7504,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7514,7 +7514,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "async-trait", "futures", @@ -7532,7 +7532,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "async-trait", "derive_more", @@ -7555,7 +7555,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "async-trait", "derive_more", @@ -7588,7 +7588,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "async-trait", "futures", @@ -7611,7 +7611,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "derive_more", "frame-support", @@ -7709,7 +7709,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7724,7 +7724,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "bitvec", "frame-system", @@ -7754,7 +7754,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7786,7 +7786,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "beefy-primitives", "bitvec", @@ -7875,7 +7875,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "beefy-primitives", "bitvec", @@ -7922,7 +7922,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "frame-support", "polkadot-primitives", @@ -7934,7 +7934,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "bs58", "parity-scale-codec", @@ -7946,7 +7946,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "bitflags", "bitvec", @@ -7989,7 +7989,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "async-trait", "beefy-gadget", @@ -8094,7 +8094,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8115,7 +8115,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8125,7 +8125,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8150,7 +8150,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "beefy-primitives", "bitvec", @@ -8211,7 +8211,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "frame-benchmarking", "frame-system", @@ -8790,7 +8790,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "env_logger 0.9.0", "log", @@ -8909,7 +8909,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -8993,7 +8993,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "frame-support", "polkadot-primitives", @@ -9154,7 +9154,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "log", "sp-core", @@ -9165,7 +9165,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "async-trait", "futures", @@ -9192,7 +9192,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "futures", "futures-timer", @@ -9215,7 +9215,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9231,7 +9231,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9248,7 +9248,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9259,7 +9259,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "array-bytes", "chrono", @@ -9299,7 +9299,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "fnv", "futures", @@ -9327,7 +9327,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "hash-db", "kvdb", @@ -9352,7 +9352,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "async-trait", "futures", @@ -9405,7 +9405,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "async-trait", "fork-tree", @@ -9447,7 +9447,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "futures", "jsonrpsee", @@ -9469,7 +9469,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9482,7 +9482,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "async-trait", "futures", @@ -9506,7 +9506,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9533,7 +9533,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "environmental", "parity-scale-codec", @@ -9549,7 +9549,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "log", "parity-scale-codec", @@ -9564,7 +9564,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9584,7 +9584,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "ahash", "array-bytes", @@ -9625,7 +9625,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "finality-grandpa", "futures", @@ -9646,7 +9646,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "ansi_term", "futures", @@ -9663,7 +9663,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "array-bytes", "async-trait", @@ -9678,7 +9678,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "array-bytes", "async-trait", @@ -9725,7 +9725,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "cid", "futures", @@ -9745,7 +9745,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "async-trait", "bitflags", @@ -9771,7 +9771,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "ahash", "futures", @@ -9789,7 +9789,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "array-bytes", "futures", @@ -9810,7 +9810,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "array-bytes", "fork-tree", @@ -9840,7 +9840,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "array-bytes", "futures", @@ -9859,7 +9859,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "array-bytes", "bytes", @@ -9889,7 +9889,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "futures", "libp2p", @@ -9902,7 +9902,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9911,7 +9911,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "futures", "hash-db", @@ -9941,7 +9941,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "futures", "jsonrpsee", @@ -9964,7 +9964,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "futures", "jsonrpsee", @@ -9977,7 +9977,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "futures", "hex", @@ -9996,7 +9996,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "async-trait", "directories", @@ -10067,7 +10067,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "log", "parity-scale-codec", @@ -10081,7 +10081,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10100,7 +10100,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "futures", "libc", @@ -10119,7 +10119,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "chrono", "futures", @@ -10137,7 +10137,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "ansi_term", "atty", @@ -10168,7 +10168,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10179,7 +10179,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "async-trait", "futures", @@ -10206,7 +10206,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "async-trait", "futures", @@ -10220,7 +10220,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "futures", "futures-timer", @@ -10638,7 +10638,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "enumn", "parity-scale-codec", @@ -10714,7 +10714,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "hash-db", "log", @@ -10732,7 +10732,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "blake2", "proc-macro-crate", @@ -10744,7 +10744,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "parity-scale-codec", "scale-info", @@ -10757,7 +10757,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "integer-sqrt", "num-traits", @@ -10772,7 +10772,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "parity-scale-codec", "scale-info", @@ -10785,7 +10785,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "async-trait", "parity-scale-codec", @@ -10797,7 +10797,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "parity-scale-codec", "sp-api", @@ -10809,7 +10809,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "futures", "log", @@ -10827,7 +10827,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "async-trait", "futures", @@ -10864,7 +10864,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "async-trait", "merlin", @@ -10887,7 +10887,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "parity-scale-codec", "scale-info", @@ -10901,7 +10901,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "parity-scale-codec", "scale-info", @@ -10914,7 +10914,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "array-bytes", "base58", @@ -10960,7 +10960,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "blake2", "byteorder", @@ -10974,7 +10974,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "proc-macro2", "quote", @@ -10985,7 +10985,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10994,7 +10994,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "proc-macro2", "quote", @@ -11004,7 +11004,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "environmental", "parity-scale-codec", @@ -11015,7 +11015,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "finality-grandpa", "log", @@ -11033,7 +11033,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11047,7 +11047,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "bytes", "futures", @@ -11073,7 +11073,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "lazy_static", "sp-core", @@ -11084,7 +11084,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "async-trait", "futures", @@ -11101,7 +11101,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "thiserror", "zstd", @@ -11110,7 +11110,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "log", "parity-scale-codec", @@ -11126,7 +11126,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "parity-scale-codec", "scale-info", @@ -11140,7 +11140,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "sp-api", "sp-core", @@ -11150,7 +11150,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "backtrace", "lazy_static", @@ -11160,7 +11160,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "rustc-hash", "serde", @@ -11170,7 +11170,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "either", "hash256-std-hasher", @@ -11193,7 +11193,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11211,7 +11211,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "Inflector", "proc-macro-crate", @@ -11223,7 +11223,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "log", "parity-scale-codec", @@ -11246,7 +11246,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "parity-scale-codec", "scale-info", @@ -11260,7 +11260,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "parity-scale-codec", "scale-info", @@ -11271,7 +11271,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "hash-db", "log", @@ -11293,12 +11293,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11311,7 +11311,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "log", "sp-core", @@ -11324,7 +11324,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "async-trait", "futures-timer", @@ -11340,7 +11340,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "parity-scale-codec", "sp-std", @@ -11352,7 +11352,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "sp-api", "sp-runtime", @@ -11361,7 +11361,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "async-trait", "log", @@ -11377,7 +11377,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "ahash", "hash-db", @@ -11400,7 +11400,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11417,7 +11417,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11428,7 +11428,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "impl-trait-for-tuples", "log", @@ -11441,7 +11441,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11737,7 +11737,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "platforms", ] @@ -11745,7 +11745,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11766,7 +11766,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "futures-util", "hyper", @@ -11779,7 +11779,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "async-trait", "jsonrpsee", @@ -11792,7 +11792,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "jsonrpsee", "log", @@ -11813,7 +11813,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "array-bytes", "async-trait", @@ -11860,7 +11860,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "ansi_term", "build-helper", @@ -11968,7 +11968,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "frame-support", "polkadot-primitives", @@ -12248,7 +12248,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12259,7 +12259,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12386,7 +12386,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" dependencies = [ "clap 4.0.18", "frame-try-runtime", @@ -12975,7 +12975,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "beefy-primitives", "bitvec", @@ -13065,7 +13065,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "frame-support", "polkadot-primitives", @@ -13348,7 +13348,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13362,7 +13362,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "frame-support", "frame-system", @@ -13382,7 +13382,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "frame-benchmarking", "frame-support", @@ -13400,7 +13400,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#37d2b0f2df3677d20ee6d86e6f9ef7ee21c33dc5" +source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" dependencies = [ "Inflector", "proc-macro2", diff --git a/parachains/runtimes/assets/statemine/src/weights/pallet_multisig.rs b/parachains/runtimes/assets/statemine/src/weights/pallet_multisig.rs index 51b8fa9f0e..2eed162d6a 100644 --- a/parachains/runtimes/assets/statemine/src/weights/pallet_multisig.rs +++ b/parachains/runtimes/assets/statemine/src/weights/pallet_multisig.rs @@ -17,22 +17,21 @@ //! Autogenerated weights for `pallet_multisig` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2022-09-21, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` -//! HOSTNAME: `bm6`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz` +//! DATE: 2022-10-26, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! HOSTNAME: `bm2`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz` //! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("statemine-dev"), DB CACHE: 1024 // Executed Command: -// ./artifacts/polkadot-parachain +// ./target/production/polkadot-parachain // benchmark // pallet // --chain=statemine-dev // --execution=wasm // --wasm-execution=compiled // --pallet=pallet_multisig -// --extrinsic=* +// --extrinsic= // --steps=50 // --repeat=20 -// --json // --header=./file_header.txt // --output=./parachains/runtimes/assets/statemine/src/weights/pallet_multisig.rs @@ -40,7 +39,7 @@ #![allow(unused_parens)] #![allow(unused_imports)] -use frame_support::{traits::Get, weights::{Weight}}; +use frame_support::{traits::Get, weights::Weight}; use sp_std::marker::PhantomData; /// Weight functions for `pallet_multisig`. @@ -48,115 +47,81 @@ pub struct WeightInfo(PhantomData); impl pallet_multisig::WeightInfo for WeightInfo { /// The range of component `z` is `[0, 10000]`. fn as_multi_threshold_1(z: u32, ) -> Weight { - Weight::from_ref_time(21_168_000 as u64) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(z as u64)) + // Minimum execution time: 21_063 nanoseconds. + Weight::from_ref_time(21_862_078 as u64) + // Standard Error: 7 + .saturating_add(Weight::from_ref_time(343 as u64).saturating_mul(z as u64)) } // Storage: Multisig Multisigs (r:1 w:1) // Storage: unknown [0x3a65787472696e7369635f696e646578] (r:1 w:0) /// The range of component `s` is `[2, 100]`. /// The range of component `z` is `[0, 10000]`. fn as_multi_create(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(40_339_000 as u64) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(100_000 as u64).saturating_mul(s as u64)) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(z as u64)) + // Minimum execution time: 48_498 nanoseconds. + Weight::from_ref_time(39_020_484 as u64) + // Standard Error: 917 + .saturating_add(Weight::from_ref_time(101_566 as u64).saturating_mul(s as u64)) + // Standard Error: 8 + .saturating_add(Weight::from_ref_time(1_559 as u64).saturating_mul(z as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:1) - // Storage: unknown [0x3a65787472696e7369635f696e646578] (r:1 w:0) - /// The range of component `s` is `[2, 100]`. - /// The range of component `z` is `[0, 10000]`. - fn as_multi_create_store(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(43_149_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(97_000 as u64).saturating_mul(s as u64)) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(z as u64)) - .saturating_add(T::DbWeight::get().reads(3 as u64)) - .saturating_add(T::DbWeight::get().writes(2 as u64)) - } - // Storage: Multisig Multisigs (r:1 w:1) /// The range of component `s` is `[3, 100]`. /// The range of component `z` is `[0, 10000]`. fn as_multi_approve(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(29_142_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(107_000 as u64).saturating_mul(s as u64)) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(z as u64)) + // Minimum execution time: 40_013 nanoseconds. + Weight::from_ref_time(28_889_358 as u64) + // Standard Error: 846 + .saturating_add(Weight::from_ref_time(117_565 as u64).saturating_mul(s as u64)) + // Standard Error: 8 + .saturating_add(Weight::from_ref_time(1_480 as u64).saturating_mul(z as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:1) - /// The range of component `s` is `[3, 100]`. - /// The range of component `z` is `[0, 10000]`. - fn as_multi_approve_store(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(44_799_000 as u64) - // Standard Error: 2_000 - .saturating_add(Weight::from_ref_time(96_000 as u64).saturating_mul(s as u64)) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(z as u64)) - .saturating_add(T::DbWeight::get().reads(2 as u64)) - .saturating_add(T::DbWeight::get().writes(2 as u64)) - } - // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:1) // Storage: System Account (r:1 w:1) /// The range of component `s` is `[2, 100]`. /// The range of component `z` is `[0, 10000]`. fn as_multi_complete(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(54_815_000 as u64) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(131_000 as u64).saturating_mul(s as u64)) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(z as u64)) - .saturating_add(T::DbWeight::get().reads(3 as u64)) - .saturating_add(T::DbWeight::get().writes(3 as u64)) + // Minimum execution time: 52_880 nanoseconds. + Weight::from_ref_time(41_398_334 as u64) + // Standard Error: 760 + .saturating_add(Weight::from_ref_time(143_103 as u64).saturating_mul(s as u64)) + // Standard Error: 7 + .saturating_add(Weight::from_ref_time(1_485 as u64).saturating_mul(z as u64)) + .saturating_add(T::DbWeight::get().reads(2 as u64)) + .saturating_add(T::DbWeight::get().writes(2 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) // Storage: unknown [0x3a65787472696e7369635f696e646578] (r:1 w:0) /// The range of component `s` is `[2, 100]`. fn approve_as_multi_create(s: u32, ) -> Weight { - Weight::from_ref_time(37_558_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(110_000 as u64).saturating_mul(s as u64)) + // Minimum execution time: 34_872 nanoseconds. + Weight::from_ref_time(37_363_593 as u64) + // Standard Error: 1_144 + .saturating_add(Weight::from_ref_time(125_451 as u64).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:0) /// The range of component `s` is `[2, 100]`. fn approve_as_multi_approve(s: u32, ) -> Weight { - Weight::from_ref_time(26_926_000 as u64) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(125_000 as u64).saturating_mul(s as u64)) + // Minimum execution time: 25_288 nanoseconds. + Weight::from_ref_time(26_822_824 as u64) + // Standard Error: 705 + .saturating_add(Weight::from_ref_time(128_964 as u64).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:1) - // Storage: System Account (r:1 w:1) - /// The range of component `s` is `[2, 100]`. - fn approve_as_multi_complete(s: u32, ) -> Weight { - Weight::from_ref_time(64_260_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(151_000 as u64).saturating_mul(s as u64)) - .saturating_add(T::DbWeight::get().reads(3 as u64)) - .saturating_add(T::DbWeight::get().writes(3 as u64)) - } - // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:1) /// The range of component `s` is `[2, 100]`. fn cancel_as_multi(s: u32, ) -> Weight { - Weight::from_ref_time(53_920_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(122_000 as u64).saturating_mul(s as u64)) - .saturating_add(T::DbWeight::get().reads(2 as u64)) - .saturating_add(T::DbWeight::get().writes(2 as u64)) + // Minimum execution time: 34_669 nanoseconds. + Weight::from_ref_time(36_953_098 as u64) + // Standard Error: 944 + .saturating_add(Weight::from_ref_time(132_676 as u64).saturating_mul(s as u64)) + .saturating_add(T::DbWeight::get().reads(1 as u64)) + .saturating_add(T::DbWeight::get().writes(1 as u64)) } } diff --git a/parachains/runtimes/assets/statemint/src/weights/pallet_multisig.rs b/parachains/runtimes/assets/statemint/src/weights/pallet_multisig.rs index 8c22cfaa98..ca74b6b56f 100644 --- a/parachains/runtimes/assets/statemint/src/weights/pallet_multisig.rs +++ b/parachains/runtimes/assets/statemint/src/weights/pallet_multisig.rs @@ -17,22 +17,21 @@ //! Autogenerated weights for `pallet_multisig` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2022-09-21, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` -//! HOSTNAME: `bm6`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz` +//! DATE: 2022-10-26, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! HOSTNAME: `bm2`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz` //! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("statemint-dev"), DB CACHE: 1024 // Executed Command: -// ./artifacts/polkadot-parachain +// ./target/production/polkadot-parachain // benchmark // pallet // --chain=statemint-dev // --execution=wasm // --wasm-execution=compiled // --pallet=pallet_multisig -// --extrinsic=* +// --extrinsic= // --steps=50 // --repeat=20 -// --json // --header=./file_header.txt // --output=./parachains/runtimes/assets/statemint/src/weights/pallet_multisig.rs @@ -40,7 +39,7 @@ #![allow(unused_parens)] #![allow(unused_imports)] -use frame_support::{traits::Get, weights::{Weight}}; +use frame_support::{traits::Get, weights::Weight}; use sp_std::marker::PhantomData; /// Weight functions for `pallet_multisig`. @@ -48,115 +47,81 @@ pub struct WeightInfo(PhantomData); impl pallet_multisig::WeightInfo for WeightInfo { /// The range of component `z` is `[0, 10000]`. fn as_multi_threshold_1(z: u32, ) -> Weight { - Weight::from_ref_time(21_264_000 as u64) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(z as u64)) + // Minimum execution time: 20_538 nanoseconds. + Weight::from_ref_time(21_429_260 as u64) + // Standard Error: 10 + .saturating_add(Weight::from_ref_time(398 as u64).saturating_mul(z as u64)) } // Storage: Multisig Multisigs (r:1 w:1) // Storage: unknown [0x3a65787472696e7369635f696e646578] (r:1 w:0) /// The range of component `s` is `[2, 100]`. /// The range of component `z` is `[0, 10000]`. fn as_multi_create(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(40_726_000 as u64) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(100_000 as u64).saturating_mul(s as u64)) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(z as u64)) + // Minimum execution time: 49_619 nanoseconds. + Weight::from_ref_time(39_692_148 as u64) + // Standard Error: 795 + .saturating_add(Weight::from_ref_time(107_929 as u64).saturating_mul(s as u64)) + // Standard Error: 7 + .saturating_add(Weight::from_ref_time(1_563 as u64).saturating_mul(z as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:1) - // Storage: unknown [0x3a65787472696e7369635f696e646578] (r:1 w:0) - /// The range of component `s` is `[2, 100]`. - /// The range of component `z` is `[0, 10000]`. - fn as_multi_create_store(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(42_052_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(109_000 as u64).saturating_mul(s as u64)) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(z as u64)) - .saturating_add(T::DbWeight::get().reads(3 as u64)) - .saturating_add(T::DbWeight::get().writes(2 as u64)) - } - // Storage: Multisig Multisigs (r:1 w:1) /// The range of component `s` is `[3, 100]`. /// The range of component `z` is `[0, 10000]`. fn as_multi_approve(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(29_056_000 as u64) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(112_000 as u64).saturating_mul(s as u64)) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(z as u64)) + // Minimum execution time: 39_162 nanoseconds. + Weight::from_ref_time(27_925_170 as u64) + // Standard Error: 771 + .saturating_add(Weight::from_ref_time(125_006 as u64).saturating_mul(s as u64)) + // Standard Error: 7 + .saturating_add(Weight::from_ref_time(1_587 as u64).saturating_mul(z as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:1) - /// The range of component `s` is `[3, 100]`. - /// The range of component `z` is `[0, 10000]`. - fn as_multi_approve_store(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(44_006_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(106_000 as u64).saturating_mul(s as u64)) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(z as u64)) - .saturating_add(T::DbWeight::get().reads(2 as u64)) - .saturating_add(T::DbWeight::get().writes(2 as u64)) - } - // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:1) // Storage: System Account (r:1 w:1) /// The range of component `s` is `[2, 100]`. /// The range of component `z` is `[0, 10000]`. fn as_multi_complete(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(53_470_000 as u64) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(136_000 as u64).saturating_mul(s as u64)) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(z as u64)) - .saturating_add(T::DbWeight::get().reads(3 as u64)) - .saturating_add(T::DbWeight::get().writes(3 as u64)) + // Minimum execution time: 54_676 nanoseconds. + Weight::from_ref_time(42_343_658 as u64) + // Standard Error: 915 + .saturating_add(Weight::from_ref_time(143_916 as u64).saturating_mul(s as u64)) + // Standard Error: 8 + .saturating_add(Weight::from_ref_time(1_486 as u64).saturating_mul(z as u64)) + .saturating_add(T::DbWeight::get().reads(2 as u64)) + .saturating_add(T::DbWeight::get().writes(2 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) // Storage: unknown [0x3a65787472696e7369635f696e646578] (r:1 w:0) /// The range of component `s` is `[2, 100]`. fn approve_as_multi_create(s: u32, ) -> Weight { - Weight::from_ref_time(36_826_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(125_000 as u64).saturating_mul(s as u64)) + // Minimum execution time: 34_863 nanoseconds. + Weight::from_ref_time(37_816_741 as u64) + // Standard Error: 1_209 + .saturating_add(Weight::from_ref_time(126_254 as u64).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:0) /// The range of component `s` is `[2, 100]`. fn approve_as_multi_approve(s: u32, ) -> Weight { - Weight::from_ref_time(26_801_000 as u64) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(126_000 as u64).saturating_mul(s as u64)) + // Minimum execution time: 25_841 nanoseconds. + Weight::from_ref_time(27_329_266 as u64) + // Standard Error: 667 + .saturating_add(Weight::from_ref_time(126_214 as u64).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:1) - // Storage: System Account (r:1 w:1) - /// The range of component `s` is `[2, 100]`. - fn approve_as_multi_complete(s: u32, ) -> Weight { - Weight::from_ref_time(67_374_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(152_000 as u64).saturating_mul(s as u64)) - .saturating_add(T::DbWeight::get().reads(3 as u64)) - .saturating_add(T::DbWeight::get().writes(3 as u64)) - } - // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:1) /// The range of component `s` is `[2, 100]`. fn cancel_as_multi(s: u32, ) -> Weight { - Weight::from_ref_time(54_556_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(125_000 as u64).saturating_mul(s as u64)) - .saturating_add(T::DbWeight::get().reads(2 as u64)) - .saturating_add(T::DbWeight::get().writes(2 as u64)) + // Minimum execution time: 34_887 nanoseconds. + Weight::from_ref_time(37_482_449 as u64) + // Standard Error: 1_063 + .saturating_add(Weight::from_ref_time(132_406 as u64).saturating_mul(s as u64)) + .saturating_add(T::DbWeight::get().reads(1 as u64)) + .saturating_add(T::DbWeight::get().writes(1 as u64)) } } diff --git a/parachains/runtimes/assets/westmint/src/weights/pallet_multisig.rs b/parachains/runtimes/assets/westmint/src/weights/pallet_multisig.rs index 57a2d8a94f..63ed12365c 100644 --- a/parachains/runtimes/assets/westmint/src/weights/pallet_multisig.rs +++ b/parachains/runtimes/assets/westmint/src/weights/pallet_multisig.rs @@ -17,22 +17,21 @@ //! Autogenerated weights for `pallet_multisig` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2022-09-21, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` -//! HOSTNAME: `bm6`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz` +//! DATE: 2022-10-26, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! HOSTNAME: `bm2`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz` //! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("westmint-dev"), DB CACHE: 1024 // Executed Command: -// ./artifacts/polkadot-parachain +// ./target/production/polkadot-parachain // benchmark // pallet // --chain=westmint-dev // --execution=wasm // --wasm-execution=compiled // --pallet=pallet_multisig -// --extrinsic=* +// --extrinsic= // --steps=50 // --repeat=20 -// --json // --header=./file_header.txt // --output=./parachains/runtimes/assets/westmint/src/weights/pallet_multisig.rs @@ -40,7 +39,7 @@ #![allow(unused_parens)] #![allow(unused_imports)] -use frame_support::{traits::Get, weights::{Weight}}; +use frame_support::{traits::Get, weights::Weight}; use sp_std::marker::PhantomData; /// Weight functions for `pallet_multisig`. @@ -48,115 +47,81 @@ pub struct WeightInfo(PhantomData); impl pallet_multisig::WeightInfo for WeightInfo { /// The range of component `z` is `[0, 10000]`. fn as_multi_threshold_1(z: u32, ) -> Weight { - Weight::from_ref_time(21_180_000 as u64) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(z as u64)) + // Minimum execution time: 21_175 nanoseconds. + Weight::from_ref_time(21_415_507 as u64) + // Standard Error: 2 + .saturating_add(Weight::from_ref_time(535 as u64).saturating_mul(z as u64)) } // Storage: Multisig Multisigs (r:1 w:1) // Storage: unknown [0x3a65787472696e7369635f696e646578] (r:1 w:0) /// The range of component `s` is `[2, 100]`. /// The range of component `z` is `[0, 10000]`. fn as_multi_create(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(40_188_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(97_000 as u64).saturating_mul(s as u64)) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(z as u64)) + // Minimum execution time: 50_848 nanoseconds. + Weight::from_ref_time(38_951_816 as u64) + // Standard Error: 591 + .saturating_add(Weight::from_ref_time(129_854 as u64).saturating_mul(s as u64)) + // Standard Error: 5 + .saturating_add(Weight::from_ref_time(1_478 as u64).saturating_mul(z as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:1) - // Storage: unknown [0x3a65787472696e7369635f696e646578] (r:1 w:0) - /// The range of component `s` is `[2, 100]`. - /// The range of component `z` is `[0, 10000]`. - fn as_multi_create_store(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(42_835_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(93_000 as u64).saturating_mul(s as u64)) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(z as u64)) - .saturating_add(T::DbWeight::get().reads(3 as u64)) - .saturating_add(T::DbWeight::get().writes(2 as u64)) - } - // Storage: Multisig Multisigs (r:1 w:1) /// The range of component `s` is `[3, 100]`. /// The range of component `z` is `[0, 10000]`. fn as_multi_approve(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(29_996_000 as u64) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(101_000 as u64).saturating_mul(s as u64)) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(z as u64)) + // Minimum execution time: 38_966 nanoseconds. + Weight::from_ref_time(28_246_168 as u64) + // Standard Error: 854 + .saturating_add(Weight::from_ref_time(120_269 as u64).saturating_mul(s as u64)) + // Standard Error: 8 + .saturating_add(Weight::from_ref_time(1_559 as u64).saturating_mul(z as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:1) - /// The range of component `s` is `[3, 100]`. - /// The range of component `z` is `[0, 10000]`. - fn as_multi_approve_store(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(43_306_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(104_000 as u64).saturating_mul(s as u64)) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(z as u64)) - .saturating_add(T::DbWeight::get().reads(2 as u64)) - .saturating_add(T::DbWeight::get().writes(2 as u64)) - } - // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:1) // Storage: System Account (r:1 w:1) /// The range of component `s` is `[2, 100]`. /// The range of component `z` is `[0, 10000]`. fn as_multi_complete(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(54_041_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(124_000 as u64).saturating_mul(s as u64)) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(z as u64)) - .saturating_add(T::DbWeight::get().reads(3 as u64)) - .saturating_add(T::DbWeight::get().writes(3 as u64)) + // Minimum execution time: 53_624 nanoseconds. + Weight::from_ref_time(41_648_270 as u64) + // Standard Error: 899 + .saturating_add(Weight::from_ref_time(146_173 as u64).saturating_mul(s as u64)) + // Standard Error: 8 + .saturating_add(Weight::from_ref_time(1_506 as u64).saturating_mul(z as u64)) + .saturating_add(T::DbWeight::get().reads(2 as u64)) + .saturating_add(T::DbWeight::get().writes(2 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) // Storage: unknown [0x3a65787472696e7369635f696e646578] (r:1 w:0) /// The range of component `s` is `[2, 100]`. fn approve_as_multi_create(s: u32, ) -> Weight { - Weight::from_ref_time(35_967_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(129_000 as u64).saturating_mul(s as u64)) + // Minimum execution time: 34_216 nanoseconds. + Weight::from_ref_time(37_335_151 as u64) + // Standard Error: 1_250 + .saturating_add(Weight::from_ref_time(127_478 as u64).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:0) /// The range of component `s` is `[2, 100]`. fn approve_as_multi_approve(s: u32, ) -> Weight { - Weight::from_ref_time(26_289_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(127_000 as u64).saturating_mul(s as u64)) + // Minimum execution time: 25_017 nanoseconds. + Weight::from_ref_time(26_893_486 as u64) + // Standard Error: 769 + .saturating_add(Weight::from_ref_time(129_806 as u64).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:1) - // Storage: System Account (r:1 w:1) - /// The range of component `s` is `[2, 100]`. - fn approve_as_multi_complete(s: u32, ) -> Weight { - Weight::from_ref_time(64_336_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(151_000 as u64).saturating_mul(s as u64)) - .saturating_add(T::DbWeight::get().reads(3 as u64)) - .saturating_add(T::DbWeight::get().writes(3 as u64)) - } - // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:1) /// The range of component `s` is `[2, 100]`. fn cancel_as_multi(s: u32, ) -> Weight { - Weight::from_ref_time(53_361_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(128_000 as u64).saturating_mul(s as u64)) - .saturating_add(T::DbWeight::get().reads(2 as u64)) - .saturating_add(T::DbWeight::get().writes(2 as u64)) + // Minimum execution time: 34_833 nanoseconds. + Weight::from_ref_time(37_327_112 as u64) + // Standard Error: 1_050 + .saturating_add(Weight::from_ref_time(132_018 as u64).saturating_mul(s as u64)) + .saturating_add(T::DbWeight::get().reads(1 as u64)) + .saturating_add(T::DbWeight::get().writes(1 as u64)) } } diff --git a/parachains/runtimes/collectives/collectives-polkadot/src/weights/pallet_multisig.rs b/parachains/runtimes/collectives/collectives-polkadot/src/weights/pallet_multisig.rs index 2c14a8c971..7832192fc2 100644 --- a/parachains/runtimes/collectives/collectives-polkadot/src/weights/pallet_multisig.rs +++ b/parachains/runtimes/collectives/collectives-polkadot/src/weights/pallet_multisig.rs @@ -17,24 +17,23 @@ //! Autogenerated weights for `pallet_multisig` //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2022-07-11, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` -//! HOSTNAME: `bm4`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz` +//! DATE: 2022-10-26, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! HOSTNAME: `bm2`, CPU: `Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz` //! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("collectives-polkadot-dev"), DB CACHE: 1024 // Executed Command: -// ./artifacts/polkadot-parachain +// ./target/production/polkadot-parachain // benchmark // pallet // --chain=collectives-polkadot-dev // --execution=wasm // --wasm-execution=compiled // --pallet=pallet_multisig -// --extrinsic=* +// --extrinsic= // --steps=50 // --repeat=20 -// --json // --header=./file_header.txt -// --output=./parachains/runtimes/collectives/collectives-polkadot/src/weights +// --output=./parachains/runtimes/collectives/collectives-polkadot/src/weights/pallet_multisig.rs #![cfg_attr(rustfmt, rustfmt_skip)] #![allow(unused_parens)] @@ -48,115 +47,81 @@ pub struct WeightInfo(PhantomData); impl pallet_multisig::WeightInfo for WeightInfo { /// The range of component `z` is `[0, 10000]`. fn as_multi_threshold_1(z: u32, ) -> Weight { - Weight::from_ref_time(17_905_000 as u64) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(z as u64)) + // Minimum execution time: 20_960 nanoseconds. + Weight::from_ref_time(21_224_051 as u64) + // Standard Error: 2 + .saturating_add(Weight::from_ref_time(562 as u64).saturating_mul(z as u64)) } // Storage: Multisig Multisigs (r:1 w:1) // Storage: unknown [0x3a65787472696e7369635f696e646578] (r:1 w:0) /// The range of component `s` is `[2, 100]`. /// The range of component `z` is `[0, 10000]`. fn as_multi_create(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(34_787_000 as u64) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(105_000 as u64).saturating_mul(s as u64)) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(z as u64)) + // Minimum execution time: 49_994 nanoseconds. + Weight::from_ref_time(38_168_401 as u64) + // Standard Error: 639 + .saturating_add(Weight::from_ref_time(128_549 as u64).saturating_mul(s as u64)) + // Standard Error: 6 + .saturating_add(Weight::from_ref_time(1_496 as u64).saturating_mul(z as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:1) - // Storage: unknown [0x3a65787472696e7369635f696e646578] (r:1 w:0) - /// The range of component `s` is `[2, 100]`. - /// The range of component `z` is `[0, 10000]`. - fn as_multi_create_store(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(38_845_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(75_000 as u64).saturating_mul(s as u64)) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(z as u64)) - .saturating_add(T::DbWeight::get().reads(3 as u64)) - .saturating_add(T::DbWeight::get().writes(2 as u64)) - } - // Storage: Multisig Multisigs (r:1 w:1) /// The range of component `s` is `[3, 100]`. /// The range of component `z` is `[0, 10000]`. fn as_multi_approve(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(25_600_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(76_000 as u64).saturating_mul(s as u64)) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(z as u64)) + // Minimum execution time: 38_218 nanoseconds. + Weight::from_ref_time(27_858_769 as u64) + // Standard Error: 787 + .saturating_add(Weight::from_ref_time(125_710 as u64).saturating_mul(s as u64)) + // Standard Error: 7 + .saturating_add(Weight::from_ref_time(1_500 as u64).saturating_mul(z as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:1) - /// The range of component `s` is `[3, 100]`. - /// The range of component `z` is `[0, 10000]`. - fn as_multi_approve_store(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(36_944_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(95_000 as u64).saturating_mul(s as u64)) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(z as u64)) - .saturating_add(T::DbWeight::get().reads(2 as u64)) - .saturating_add(T::DbWeight::get().writes(2 as u64)) - } - // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:1) // Storage: System Account (r:1 w:1) /// The range of component `s` is `[2, 100]`. /// The range of component `z` is `[0, 10000]`. fn as_multi_complete(s: u32, z: u32, ) -> Weight { - Weight::from_ref_time(46_014_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(126_000 as u64).saturating_mul(s as u64)) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(z as u64)) - .saturating_add(T::DbWeight::get().reads(3 as u64)) - .saturating_add(T::DbWeight::get().writes(3 as u64)) + // Minimum execution time: 52_270 nanoseconds. + Weight::from_ref_time(39_676_905 as u64) + // Standard Error: 921 + .saturating_add(Weight::from_ref_time(149_819 as u64).saturating_mul(s as u64)) + // Standard Error: 9 + .saturating_add(Weight::from_ref_time(1_580 as u64).saturating_mul(z as u64)) + .saturating_add(T::DbWeight::get().reads(2 as u64)) + .saturating_add(T::DbWeight::get().writes(2 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) // Storage: unknown [0x3a65787472696e7369635f696e646578] (r:1 w:0) /// The range of component `s` is `[2, 100]`. fn approve_as_multi_create(s: u32, ) -> Weight { - Weight::from_ref_time(31_616_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(117_000 as u64).saturating_mul(s as u64)) + // Minimum execution time: 33_994 nanoseconds. + Weight::from_ref_time(36_875_310 as u64) + // Standard Error: 1_099 + .saturating_add(Weight::from_ref_time(129_680 as u64).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:0) /// The range of component `s` is `[2, 100]`. fn approve_as_multi_approve(s: u32, ) -> Weight { - Weight::from_ref_time(20_862_000 as u64) - // Standard Error: 0 - .saturating_add(Weight::from_ref_time(109_000 as u64).saturating_mul(s as u64)) + // Minimum execution time: 24_546 nanoseconds. + Weight::from_ref_time(26_469_862 as u64) + // Standard Error: 882 + .saturating_add(Weight::from_ref_time(127_818 as u64).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:1) - // Storage: System Account (r:1 w:1) - /// The range of component `s` is `[2, 100]`. - fn approve_as_multi_complete(s: u32, ) -> Weight { - Weight::from_ref_time(64_311_000 as u64) - // Standard Error: 1_000 - .saturating_add(Weight::from_ref_time(164_000 as u64).saturating_mul(s as u64)) - .saturating_add(T::DbWeight::get().reads(3 as u64)) - .saturating_add(T::DbWeight::get().writes(3 as u64)) - } - // Storage: Multisig Multisigs (r:1 w:1) - // Storage: Multisig Calls (r:1 w:1) /// The range of component `s` is `[2, 100]`. fn cancel_as_multi(s: u32, ) -> Weight { - Weight::from_ref_time(51_181_000 as u64) - // Standard Error: 2_000 - .saturating_add(Weight::from_ref_time(110_000 as u64).saturating_mul(s as u64)) - .saturating_add(T::DbWeight::get().reads(2 as u64)) - .saturating_add(T::DbWeight::get().writes(2 as u64)) + // Minimum execution time: 33_795 nanoseconds. + Weight::from_ref_time(36_427_405 as u64) + // Standard Error: 994 + .saturating_add(Weight::from_ref_time(139_272 as u64).saturating_mul(s as u64)) + .saturating_add(T::DbWeight::get().reads(1 as u64)) + .saturating_add(T::DbWeight::get().writes(1 as u64)) } } diff --git a/test/relay-sproof-builder/src/lib.rs b/test/relay-sproof-builder/src/lib.rs index 5c2a1a1063..41e9c84d34 100644 --- a/test/relay-sproof-builder/src/lib.rs +++ b/test/relay-sproof-builder/src/lib.rs @@ -28,7 +28,7 @@ pub struct RelayStateSproofBuilder { /// The para id of the current parachain. /// /// This doesn't get into the storage proof produced by the builder, however, it is used for - /// generation of the storage image and by auxilary methods. + /// generation of the storage image and by auxiliary methods. /// /// It's recommended to change this value once in the very beginning of usage. /// From 79d442f880a053039e9f3473fb8832a0d7a94d0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Fri, 28 Oct 2022 15:51:54 +0200 Subject: [PATCH 44/48] Companion for aura CompatibilityMode (#1803) * Companion for aura CompatibilityMode As no parachain was launched with the broken authority set change handling we don't need to expose the compatibility mode. * FMT * update lockfile for {"substrate", "polkadot"} Co-authored-by: parity-processbot <> --- Cargo.lock | 506 +++++++++++----------- client/consensus/aura/src/import_queue.rs | 8 +- client/consensus/aura/src/lib.rs | 1 + polkadot-parachain/src/service.rs | 22 +- 4 files changed, 271 insertions(+), 266 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 009236aafc..c033de23fd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "beefy-primitives", "sp-api", @@ -536,7 +536,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "parity-scale-codec", "scale-info", @@ -2802,7 +2802,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "parity-scale-codec", ] @@ -2825,7 +2825,7 @@ checksum = "85dcb89d2b10c5f6133de2efd8c11959ce9dbb46a2f7a4cab208c4eeda6ce1ab" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-support", "frame-system", @@ -2848,7 +2848,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "Inflector", "array-bytes", @@ -2899,7 +2899,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2910,7 +2910,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2926,7 +2926,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-support", "frame-system", @@ -2955,7 +2955,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "bitflags", "frame-metadata", @@ -2987,7 +2987,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "Inflector", "cfg-expr", @@ -3001,7 +3001,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3013,7 +3013,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "proc-macro2", "quote", @@ -3023,7 +3023,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-support", "log", @@ -3041,7 +3041,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -3056,7 +3056,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "parity-scale-codec", "sp-api", @@ -3065,7 +3065,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-support", "parity-scale-codec", @@ -3926,7 +3926,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "beefy-primitives", "bitvec", @@ -4024,7 +4024,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "frame-support", "polkadot-primitives", @@ -5248,7 +5248,7 @@ checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64" [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5269,7 +5269,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-support", "frame-system", @@ -5286,7 +5286,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -5300,7 +5300,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-support", "frame-system", @@ -5316,7 +5316,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-support", "frame-system", @@ -5332,7 +5332,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-support", "frame-system", @@ -5347,7 +5347,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -5371,7 +5371,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5391,7 +5391,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -5406,7 +5406,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "beefy-primitives", "frame-support", @@ -5422,7 +5422,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5445,7 +5445,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -5463,7 +5463,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -5507,7 +5507,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -5524,7 +5524,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "bitflags", "frame-benchmarking", @@ -5553,7 +5553,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "bitflags", "parity-scale-codec", @@ -5565,7 +5565,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "proc-macro2", "quote", @@ -5575,7 +5575,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5592,7 +5592,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -5610,7 +5610,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5634,7 +5634,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5647,7 +5647,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -5665,7 +5665,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5686,7 +5686,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -5701,7 +5701,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -5724,7 +5724,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5740,7 +5740,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -5760,7 +5760,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -5777,7 +5777,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -5794,7 +5794,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5812,7 +5812,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5827,7 +5827,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -5843,7 +5843,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-support", "frame-system", @@ -5860,7 +5860,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5880,7 +5880,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "parity-scale-codec", "sp-api", @@ -5890,7 +5890,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-support", "frame-system", @@ -5907,7 +5907,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5930,7 +5930,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -5947,7 +5947,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -5962,7 +5962,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-support", "frame-system", @@ -5976,7 +5976,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -5994,7 +5994,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -6009,7 +6009,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6027,7 +6027,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -6043,7 +6043,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-support", "frame-system", @@ -6064,7 +6064,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -6080,7 +6080,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-support", "frame-system", @@ -6094,7 +6094,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6117,7 +6117,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6128,7 +6128,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "log", "sp-arithmetic", @@ -6137,7 +6137,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-support", "frame-system", @@ -6166,7 +6166,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -6184,7 +6184,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -6203,7 +6203,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-support", "frame-system", @@ -6219,7 +6219,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6234,7 +6234,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6245,7 +6245,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -6262,7 +6262,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -6277,7 +6277,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -6293,7 +6293,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -6308,7 +6308,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-benchmarking", "frame-support", @@ -6323,7 +6323,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "frame-support", "frame-system", @@ -6341,7 +6341,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "frame-benchmarking", "frame-support", @@ -6895,7 +6895,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -6910,7 +6910,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -6924,7 +6924,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "derive_more", "fatality", @@ -6947,7 +6947,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "fatality", "futures", @@ -6968,7 +6968,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "clap 4.0.18", "frame-benchmarking-cli", @@ -6994,7 +6994,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7035,7 +7035,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "always-assert", "bitvec", @@ -7057,7 +7057,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7070,7 +7070,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "derive_more", "fatality", @@ -7095,7 +7095,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7109,7 +7109,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "futures", "futures-timer", @@ -7129,7 +7129,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "always-assert", "async-trait", @@ -7153,7 +7153,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "futures", "parity-scale-codec", @@ -7171,7 +7171,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "bitvec", "derive_more", @@ -7200,7 +7200,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "bitvec", "futures", @@ -7220,7 +7220,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "bitvec", "fatality", @@ -7239,7 +7239,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7254,7 +7254,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "async-trait", "futures", @@ -7272,7 +7272,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7287,7 +7287,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "futures", "futures-timer", @@ -7304,7 +7304,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "fatality", "futures", @@ -7323,7 +7323,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "async-trait", "futures", @@ -7340,7 +7340,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "bitvec", "fatality", @@ -7358,7 +7358,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "always-assert", "assert_matches", @@ -7390,7 +7390,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "futures", "polkadot-node-primitives", @@ -7406,7 +7406,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "futures", "memory-lru", @@ -7422,7 +7422,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "async-std", "lazy_static", @@ -7440,7 +7440,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "bs58", "futures", @@ -7459,7 +7459,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "async-trait", "derive_more", @@ -7482,7 +7482,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "bounded-vec", "futures", @@ -7504,7 +7504,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7514,7 +7514,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "async-trait", "futures", @@ -7532,7 +7532,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "async-trait", "derive_more", @@ -7555,7 +7555,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "async-trait", "derive_more", @@ -7588,7 +7588,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "async-trait", "futures", @@ -7611,7 +7611,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "derive_more", "frame-support", @@ -7709,7 +7709,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7724,7 +7724,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "bitvec", "frame-system", @@ -7754,7 +7754,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7786,7 +7786,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "beefy-primitives", "bitvec", @@ -7875,7 +7875,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "beefy-primitives", "bitvec", @@ -7922,7 +7922,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "frame-support", "polkadot-primitives", @@ -7934,7 +7934,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "bs58", "parity-scale-codec", @@ -7946,7 +7946,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "bitflags", "bitvec", @@ -7989,7 +7989,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "async-trait", "beefy-gadget", @@ -8094,7 +8094,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8115,7 +8115,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8125,7 +8125,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8150,7 +8150,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "beefy-primitives", "bitvec", @@ -8211,7 +8211,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "frame-benchmarking", "frame-system", @@ -8790,7 +8790,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "env_logger 0.9.0", "log", @@ -8909,7 +8909,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -8993,7 +8993,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "frame-support", "polkadot-primitives", @@ -9154,7 +9154,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "log", "sp-core", @@ -9165,7 +9165,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "async-trait", "futures", @@ -9192,7 +9192,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "futures", "futures-timer", @@ -9215,7 +9215,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9231,7 +9231,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9248,7 +9248,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9259,7 +9259,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "array-bytes", "chrono", @@ -9299,7 +9299,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "fnv", "futures", @@ -9327,7 +9327,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "hash-db", "kvdb", @@ -9352,7 +9352,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "async-trait", "futures", @@ -9376,7 +9376,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "async-trait", "futures", @@ -9405,7 +9405,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "async-trait", "fork-tree", @@ -9447,7 +9447,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "futures", "jsonrpsee", @@ -9469,7 +9469,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9482,7 +9482,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "async-trait", "futures", @@ -9506,7 +9506,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9533,7 +9533,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "environmental", "parity-scale-codec", @@ -9549,7 +9549,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "log", "parity-scale-codec", @@ -9564,7 +9564,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9584,7 +9584,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "ahash", "array-bytes", @@ -9625,7 +9625,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "finality-grandpa", "futures", @@ -9646,7 +9646,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "ansi_term", "futures", @@ -9663,7 +9663,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "array-bytes", "async-trait", @@ -9678,7 +9678,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "array-bytes", "async-trait", @@ -9725,7 +9725,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "cid", "futures", @@ -9745,7 +9745,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "async-trait", "bitflags", @@ -9771,7 +9771,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "ahash", "futures", @@ -9789,7 +9789,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "array-bytes", "futures", @@ -9810,7 +9810,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "array-bytes", "fork-tree", @@ -9840,7 +9840,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "array-bytes", "futures", @@ -9859,7 +9859,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "array-bytes", "bytes", @@ -9889,7 +9889,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "futures", "libp2p", @@ -9902,7 +9902,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9911,7 +9911,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "futures", "hash-db", @@ -9941,7 +9941,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "futures", "jsonrpsee", @@ -9964,7 +9964,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "futures", "jsonrpsee", @@ -9977,7 +9977,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "futures", "hex", @@ -9996,7 +9996,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "async-trait", "directories", @@ -10067,7 +10067,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "log", "parity-scale-codec", @@ -10081,7 +10081,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10100,7 +10100,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "futures", "libc", @@ -10119,7 +10119,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "chrono", "futures", @@ -10137,7 +10137,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "ansi_term", "atty", @@ -10168,7 +10168,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10179,7 +10179,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "async-trait", "futures", @@ -10206,7 +10206,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "async-trait", "futures", @@ -10220,7 +10220,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "futures", "futures-timer", @@ -10638,7 +10638,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "enumn", "parity-scale-codec", @@ -10714,7 +10714,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "hash-db", "log", @@ -10732,7 +10732,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "blake2", "proc-macro-crate", @@ -10744,7 +10744,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "parity-scale-codec", "scale-info", @@ -10757,7 +10757,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "integer-sqrt", "num-traits", @@ -10772,7 +10772,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "parity-scale-codec", "scale-info", @@ -10785,7 +10785,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "async-trait", "parity-scale-codec", @@ -10797,7 +10797,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "parity-scale-codec", "sp-api", @@ -10809,7 +10809,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "futures", "log", @@ -10827,7 +10827,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "async-trait", "futures", @@ -10846,7 +10846,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "async-trait", "parity-scale-codec", @@ -10864,7 +10864,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "async-trait", "merlin", @@ -10887,7 +10887,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "parity-scale-codec", "scale-info", @@ -10901,7 +10901,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "parity-scale-codec", "scale-info", @@ -10914,7 +10914,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "array-bytes", "base58", @@ -10960,7 +10960,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "blake2", "byteorder", @@ -10974,7 +10974,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "proc-macro2", "quote", @@ -10985,7 +10985,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10994,7 +10994,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "proc-macro2", "quote", @@ -11004,7 +11004,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "environmental", "parity-scale-codec", @@ -11015,7 +11015,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "finality-grandpa", "log", @@ -11033,7 +11033,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11047,7 +11047,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "bytes", "futures", @@ -11073,7 +11073,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "lazy_static", "sp-core", @@ -11084,7 +11084,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "async-trait", "futures", @@ -11101,7 +11101,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "thiserror", "zstd", @@ -11110,7 +11110,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "log", "parity-scale-codec", @@ -11126,7 +11126,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "parity-scale-codec", "scale-info", @@ -11140,7 +11140,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "sp-api", "sp-core", @@ -11150,7 +11150,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "backtrace", "lazy_static", @@ -11160,7 +11160,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "rustc-hash", "serde", @@ -11170,7 +11170,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "either", "hash256-std-hasher", @@ -11193,7 +11193,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11211,7 +11211,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "Inflector", "proc-macro-crate", @@ -11223,7 +11223,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "log", "parity-scale-codec", @@ -11237,7 +11237,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "serde", "serde_json", @@ -11246,7 +11246,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "parity-scale-codec", "scale-info", @@ -11260,7 +11260,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "parity-scale-codec", "scale-info", @@ -11271,7 +11271,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "hash-db", "log", @@ -11293,12 +11293,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11311,7 +11311,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "log", "sp-core", @@ -11324,7 +11324,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "async-trait", "futures-timer", @@ -11340,7 +11340,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "parity-scale-codec", "sp-std", @@ -11352,7 +11352,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "sp-api", "sp-runtime", @@ -11361,7 +11361,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "async-trait", "log", @@ -11377,7 +11377,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "ahash", "hash-db", @@ -11400,7 +11400,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11417,7 +11417,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11428,7 +11428,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "impl-trait-for-tuples", "log", @@ -11441,7 +11441,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11737,7 +11737,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "platforms", ] @@ -11745,7 +11745,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11766,7 +11766,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "futures-util", "hyper", @@ -11779,7 +11779,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "async-trait", "jsonrpsee", @@ -11792,7 +11792,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "jsonrpsee", "log", @@ -11813,7 +11813,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "array-bytes", "async-trait", @@ -11839,7 +11839,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11849,7 +11849,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#65a870ab4a7fff46a307eacc0ae3a8f7f0f61f5e" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11860,7 +11860,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "ansi_term", "build-helper", @@ -11968,7 +11968,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "frame-support", "polkadot-primitives", @@ -12248,7 +12248,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12259,7 +12259,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12386,7 +12386,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#696bdc67af5fd83aca318263dbd405593b043ba3" +source = "git+https://github.com/paritytech/substrate?branch=master#4e1e17cccd499dfe49e8c1bed01957953aa4c839" dependencies = [ "clap 4.0.18", "frame-try-runtime", @@ -12975,7 +12975,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "beefy-primitives", "bitvec", @@ -13065,7 +13065,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "frame-support", "polkadot-primitives", @@ -13348,7 +13348,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13362,7 +13362,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "frame-support", "frame-system", @@ -13382,7 +13382,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "frame-benchmarking", "frame-support", @@ -13400,7 +13400,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.31" -source = "git+https://github.com/paritytech/polkadot?branch=master#11221b5a5636e1896b63700767a5f2891643bbe7" +source = "git+https://github.com/paritytech/polkadot?branch=master#ef8d1a72f8081fdcee28b7434697b3978ec93a05" dependencies = [ "Inflector", "proc-macro2", diff --git a/client/consensus/aura/src/import_queue.rs b/client/consensus/aura/src/import_queue.rs index 2c21bf546b..5cc7e9e065 100644 --- a/client/consensus/aura/src/import_queue.rs +++ b/client/consensus/aura/src/import_queue.rs @@ -20,7 +20,7 @@ use codec::Codec; use cumulus_client_consensus_common::ParachainBlockImport; use sc_client_api::{backend::AuxStore, BlockOf, UsageProvider}; use sc_consensus::{import_queue::DefaultImportQueue, BlockImport}; -use sc_consensus_aura::AuraVerifier; +use sc_consensus_aura::{AuraVerifier, CompatibilityMode}; use sc_consensus_slots::InherentDataProviderExt; use sc_telemetry::TelemetryHandle; use sp_api::{ApiExt, ProvideRuntimeApi}; @@ -92,6 +92,7 @@ where registry, check_for_equivocation: sc_consensus_aura::CheckForEquivocation::No, telemetry, + compatibility_mode: CompatibilityMode::None, }) } @@ -106,16 +107,17 @@ pub struct BuildVerifierParams { } /// Build the [`AuraVerifier`]. -pub fn build_verifier( +pub fn build_verifier( BuildVerifierParams { client, create_inherent_data_providers, telemetry }: BuildVerifierParams< C, CIDP, >, -) -> AuraVerifier { +) -> AuraVerifier { sc_consensus_aura::build_verifier(sc_consensus_aura::BuildVerifierParams { client, create_inherent_data_providers, telemetry, check_for_equivocation: sc_consensus_aura::CheckForEquivocation::No, + compatibility_mode: CompatibilityMode::None, }) } diff --git a/client/consensus/aura/src/lib.rs b/client/consensus/aura/src/lib.rs index 5dbd9fcd51..abc6873cd0 100644 --- a/client/consensus/aura/src/lib.rs +++ b/client/consensus/aura/src/lib.rs @@ -143,6 +143,7 @@ where telemetry, block_proposal_slot_portion, max_block_proposal_slot_portion, + compatibility_mode: sc_consensus_aura::CompatibilityMode::None, }, ); diff --git a/polkadot-parachain/src/service.rs b/polkadot-parachain/src/service.rs index 4c87c20d77..a350a10cd0 100644 --- a/polkadot-parachain/src/service.rs +++ b/polkadot-parachain/src/service.rs @@ -1029,23 +1029,25 @@ where let aura_verifier = move || { let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client2).unwrap(); - Box::new(cumulus_client_consensus_aura::build_verifier::<::Pair, _, _>( - cumulus_client_consensus_aura::BuildVerifierParams { - client: client2.clone(), - create_inherent_data_providers: move |_, _| async move { - let timestamp = sp_timestamp::InherentDataProvider::from_system_time(); + Box::new( + cumulus_client_consensus_aura::build_verifier::<::Pair, _, _, _>( + cumulus_client_consensus_aura::BuildVerifierParams { + client: client2.clone(), + create_inherent_data_providers: move |_, _| async move { + let timestamp = sp_timestamp::InherentDataProvider::from_system_time(); - let slot = + let slot = sp_consensus_aura::inherents::InherentDataProvider::from_timestamp_and_slot_duration( *timestamp, slot_duration, ); - Ok((slot, timestamp)) + Ok((slot, timestamp)) + }, + telemetry: telemetry_handle, }, - telemetry: telemetry_handle, - }, - )) as Box<_> + ), + ) as Box<_> }; let relay_chain_verifier = From 3577f8d398ee632df9b02dd7f6287e39ba0fa66f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Thei=C3=9Fen?= Date: Sun, 30 Oct 2022 16:51:45 +0100 Subject: [PATCH 45/48] Companion for update `wasm-opt` (#1806) * Update cc * Update regex --- Cargo.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c033de23fd..2dc925adee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -825,9 +825,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" [[package]] name = "cc" -version = "1.0.72" +version = "1.0.73" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22a9137b95ea06864e018375b72adfb7db6e6f68cfc8df5a04d00288050485ee" +checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" dependencies = [ "jobserver", ] @@ -8763,9 +8763,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.5.5" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286" +checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b" dependencies = [ "aho-corasick", "memchr", @@ -8783,9 +8783,9 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.6.25" +version = "0.6.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" +checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244" [[package]] name = "remote-externalities" From ab0213100811b1129cd118013da9371ffd177aca Mon Sep 17 00:00:00 2001 From: Sebastian Kunert Date: Mon, 31 Oct 2022 19:45:20 +0100 Subject: [PATCH 46/48] Add RPC nodes to pov-recovery test (#1807) --- zombienet_tests/0002-pov_recovery.feature | 4 ++++ zombienet_tests/0002-pov_recovery.toml | 16 ++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/zombienet_tests/0002-pov_recovery.feature b/zombienet_tests/0002-pov_recovery.feature index 0b4d0a81de..8052416482 100644 --- a/zombienet_tests/0002-pov_recovery.feature +++ b/zombienet_tests/0002-pov_recovery.feature @@ -10,6 +10,8 @@ validator-3: is up alice: is up within 60 seconds bob: is up within 60 seconds charlie: is up within 60 seconds +one: is up within 60 seconds +two: is up within 60 seconds # wait 30 blocks and register parachain validator-3: reports block height is at least 30 within 250 seconds @@ -20,3 +22,5 @@ validator-0: parachain 2000 is registered within 300 seconds bob: reports block height is at least 20 within 600 seconds alice: reports block height is at least 20 within 600 seconds charlie: reports block height is at least 20 within 600 seconds +one: reports block height is at least 20 within 600 seconds +two: reports block height is at least 20 within 600 seconds diff --git a/zombienet_tests/0002-pov_recovery.toml b/zombienet_tests/0002-pov_recovery.toml index a9117dd82c..2e3f8629ca 100644 --- a/zombienet_tests/0002-pov_recovery.toml +++ b/zombienet_tests/0002-pov_recovery.toml @@ -49,3 +49,19 @@ add_to_genesis = false image = "{{COL_IMAGE}}" command = "test-parachain" args = ["-lparachain::availability=trace,sync=debug,parachain=debug,cumulus-pov-recovery=debug", "--disable-block-announcements", "--bootnodes {{'bob'|zombie('multiAddress')}}","--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] + + # run one as a RPC collator who does not produce blocks + [[parachains.collators]] + name = "one" + validator = true # collator + image = "{{COL_IMAGE}}" + command = "test-parachain" + args = ["-lparachain::availability=trace,sync=debug,parachain=debug,cumulus-pov-recovery=debug", "--use-null-consensus", "--disable-block-announcements", "--bootnodes {{'bob'|zombie('multiAddress')}}", "--relay-chain-rpc-url {{'ferdie'|zombie('wsUri')}}", "--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] + + # run two as a RPC parachain full node + [[parachains.collators]] + name = "two" + validator = false # full node + image = "{{COL_IMAGE}}" + command = "test-parachain" + args = ["-lparachain::availability=trace,sync=debug,parachain=debug,cumulus-pov-recovery=debug", "--disable-block-announcements", "--bootnodes {{'bob'|zombie('multiAddress')}}", "--relay-chain-rpc-url {{'ferdie'|zombie('wsUri')}}", "--", "--reserved-only", "--reserved-nodes {{'ferdie'|zombie('multiAddress')}}"] From 4b869cac55b8784f7dea8a5a7c9489e17b2f7a92 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Nov 2022 13:18:24 +0100 Subject: [PATCH 47/48] Bump scale-info from 2.2.0 to 2.3.0 (#1809) Bumps [scale-info](https://github.com/paritytech/scale-info) from 2.2.0 to 2.3.0. - [Release notes](https://github.com/paritytech/scale-info/releases) - [Changelog](https://github.com/paritytech/scale-info/blob/master/CHANGELOG.md) - [Commits](https://github.com/paritytech/scale-info/commits/v2.3.0) --- updated-dependencies: - dependency-name: scale-info dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 8 ++++---- pallets/aura-ext/Cargo.toml | 2 +- pallets/collator-selection/Cargo.toml | 2 +- pallets/dmp-queue/Cargo.toml | 2 +- pallets/parachain-system/Cargo.toml | 2 +- pallets/xcm/Cargo.toml | 2 +- pallets/xcmp-queue/Cargo.toml | 2 +- parachain-template/runtime/Cargo.toml | 2 +- parachains/common/Cargo.toml | 2 +- parachains/pallets/parachain-info/Cargo.toml | 2 +- parachains/pallets/ping/Cargo.toml | 2 +- parachains/runtimes/assets/statemine/Cargo.toml | 2 +- parachains/runtimes/assets/statemint/Cargo.toml | 2 +- parachains/runtimes/assets/westmint/Cargo.toml | 2 +- .../runtimes/collectives/collectives-polkadot/Cargo.toml | 2 +- parachains/runtimes/contracts/contracts-rococo/Cargo.toml | 2 +- parachains/runtimes/starters/seedling/Cargo.toml | 2 +- parachains/runtimes/starters/shell/Cargo.toml | 2 +- parachains/runtimes/testing/penpal/Cargo.toml | 2 +- parachains/runtimes/testing/rococo-parachain/Cargo.toml | 2 +- primitives/parachain-inherent/Cargo.toml | 2 +- test/runtime/Cargo.toml | 2 +- 22 files changed, 25 insertions(+), 25 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2dc925adee..3d1cba3eb0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10232,9 +10232,9 @@ dependencies = [ [[package]] name = "scale-info" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "333af15b02563b8182cd863f925bd31ef8fa86a0e095d30c091956057d436153" +checksum = "88d8a765117b237ef233705cc2cc4c6a27fccd46eea6ef0c8c6dae5f3ef407f8" dependencies = [ "bitvec", "cfg-if 1.0.0", @@ -10246,9 +10246,9 @@ dependencies = [ [[package]] name = "scale-info-derive" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53f56acbd0743d29ffa08f911ab5397def774ad01bab3786804cf6ee057fb5e1" +checksum = "cdcd47b380d8c4541044e341dcd9475f55ba37ddc50c908d945fc036a8642496" dependencies = [ "proc-macro-crate", "proc-macro2", diff --git a/pallets/aura-ext/Cargo.toml b/pallets/aura-ext/Cargo.toml index 7801039cbf..67683a4e4c 100644 --- a/pallets/aura-ext/Cargo.toml +++ b/pallets/aura-ext/Cargo.toml @@ -7,7 +7,7 @@ description = "AURA consensus extension pallet for parachains" [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } -scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } # Substrate frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } diff --git a/pallets/collator-selection/Cargo.toml b/pallets/collator-selection/Cargo.toml index 557d894fb1..8315eb2212 100644 --- a/pallets/collator-selection/Cargo.toml +++ b/pallets/collator-selection/Cargo.toml @@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"] log = { version = "0.4.17", default-features = false } codec = { default-features = false, features = ["derive"], package = "parity-scale-codec", version = "3.0.0" } rand = { version = "0.8.5", features = ["std_rng"], default-features = false } -scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" } sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/pallets/dmp-queue/Cargo.toml b/pallets/dmp-queue/Cargo.toml index dda503be7a..4a8faef79f 100644 --- a/pallets/dmp-queue/Cargo.toml +++ b/pallets/dmp-queue/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ], default-features = false } log = { version = "0.4.17", default-features = false } -scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } # Substrate frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } diff --git a/pallets/parachain-system/Cargo.toml b/pallets/parachain-system/Cargo.toml index 8b20313561..ba542d109e 100644 --- a/pallets/parachain-system/Cargo.toml +++ b/pallets/parachain-system/Cargo.toml @@ -11,7 +11,7 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features = environmental = { version = "1.1.2", default-features = false } impl-trait-for-tuples = "0.2.1" log = { version = "0.4.17", default-features = false } -scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } # Substrate frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } diff --git a/pallets/xcm/Cargo.toml b/pallets/xcm/Cargo.toml index c90a3fd824..5e12068737 100644 --- a/pallets/xcm/Cargo.toml +++ b/pallets/xcm/Cargo.toml @@ -6,7 +6,7 @@ version = "0.1.0" [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } -scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } diff --git a/pallets/xcmp-queue/Cargo.toml b/pallets/xcmp-queue/Cargo.toml index 8c7aef6a35..c7a2eb88b2 100644 --- a/pallets/xcmp-queue/Cargo.toml +++ b/pallets/xcmp-queue/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ], default-features = false } log = { version = "0.4.17", default-features = false } rand_chacha = { version = "0.3.0", default-features = false } -scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } # Substrate frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } diff --git a/parachain-template/runtime/Cargo.toml b/parachain-template/runtime/Cargo.toml index ec642e72bc..6de1e213c5 100644 --- a/parachain-template/runtime/Cargo.toml +++ b/parachain-template/runtime/Cargo.toml @@ -18,7 +18,7 @@ substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", bran codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } hex-literal = { version = "0.3.4", optional = true } log = { version = "0.4.17", default-features = false } -scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } smallvec = "1.10.0" # Local diff --git a/parachains/common/Cargo.toml b/parachains/common/Cargo.toml index 300f8683d8..a01b925b1e 100644 --- a/parachains/common/Cargo.toml +++ b/parachains/common/Cargo.toml @@ -10,7 +10,7 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive"], default-features = false } -scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } # Substrate frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } diff --git a/parachains/pallets/parachain-info/Cargo.toml b/parachains/pallets/parachain-info/Cargo.toml index 79e9a9ad01..384ddc2b12 100644 --- a/parachains/pallets/parachain-info/Cargo.toml +++ b/parachains/pallets/parachain-info/Cargo.toml @@ -6,7 +6,7 @@ version = "0.1.0" [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } -scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } diff --git a/parachains/pallets/ping/Cargo.toml b/parachains/pallets/ping/Cargo.toml index 544a43ebce..4aa1bd447f 100644 --- a/parachains/pallets/ping/Cargo.toml +++ b/parachains/pallets/ping/Cargo.toml @@ -6,7 +6,7 @@ version = "0.1.0" [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } -scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } diff --git a/parachains/runtimes/assets/statemine/Cargo.toml b/parachains/runtimes/assets/statemine/Cargo.toml index 6be6a7e53d..0880249c31 100644 --- a/parachains/runtimes/assets/statemine/Cargo.toml +++ b/parachains/runtimes/assets/statemine/Cargo.toml @@ -9,7 +9,7 @@ description = "Kusama variant of Statemint parachain runtime" codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "max-encoded-len"] } hex-literal = { version = "0.3.4", optional = true } log = { version = "0.4.17", default-features = false } -scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } smallvec = "1.10.0" # Substrate diff --git a/parachains/runtimes/assets/statemint/Cargo.toml b/parachains/runtimes/assets/statemint/Cargo.toml index f13f786c15..4eb705107d 100644 --- a/parachains/runtimes/assets/statemint/Cargo.toml +++ b/parachains/runtimes/assets/statemint/Cargo.toml @@ -9,7 +9,7 @@ description = "Statemint parachain runtime" codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "max-encoded-len"] } hex-literal = { version = "0.3.4", optional = true } log = { version = "0.4.17", default-features = false } -scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } smallvec = "1.10.0" # Substrate diff --git a/parachains/runtimes/assets/westmint/Cargo.toml b/parachains/runtimes/assets/westmint/Cargo.toml index 520ab1fbc2..f9f00d7bb6 100644 --- a/parachains/runtimes/assets/westmint/Cargo.toml +++ b/parachains/runtimes/assets/westmint/Cargo.toml @@ -9,7 +9,7 @@ description = "Westend variant of Statemint parachain runtime" codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "max-encoded-len"] } hex-literal = { version = "0.3.4", optional = true } log = { version = "0.4.17", default-features = false } -scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } smallvec = "1.10.0" # Substrate diff --git a/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml b/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml index 4f1f54f8ef..f299377c79 100644 --- a/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml +++ b/parachains/runtimes/collectives/collectives-polkadot/Cargo.toml @@ -9,7 +9,7 @@ description = "Polkadot Collectives Parachain Runtime" codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "max-encoded-len"] } hex-literal = { version = "0.3.4", optional = true } log = { version = "0.4.17", default-features = false } -scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } smallvec = "1.10.0" # Substrate diff --git a/parachains/runtimes/contracts/contracts-rococo/Cargo.toml b/parachains/runtimes/contracts/contracts-rococo/Cargo.toml index 1a576bf4ca..2aa913bf9c 100644 --- a/parachains/runtimes/contracts/contracts-rococo/Cargo.toml +++ b/parachains/runtimes/contracts/contracts-rococo/Cargo.toml @@ -14,7 +14,7 @@ substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", bran codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } hex-literal = { version = "0.3.4", optional = true } log = { version = "0.4.17", default-features = false } -scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } smallvec = "1.10.0" # Substrate diff --git a/parachains/runtimes/starters/seedling/Cargo.toml b/parachains/runtimes/starters/seedling/Cargo.toml index 620a32f0e0..b828896ad7 100644 --- a/parachains/runtimes/starters/seedling/Cargo.toml +++ b/parachains/runtimes/starters/seedling/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } -scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } # Substrate frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } diff --git a/parachains/runtimes/starters/shell/Cargo.toml b/parachains/runtimes/starters/shell/Cargo.toml index d62fa52bff..c2d35ecc6c 100644 --- a/parachains/runtimes/starters/shell/Cargo.toml +++ b/parachains/runtimes/starters/shell/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } -scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } # Substrate frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } diff --git a/parachains/runtimes/testing/penpal/Cargo.toml b/parachains/runtimes/testing/penpal/Cargo.toml index b76f9e3d6b..abc74695cb 100644 --- a/parachains/runtimes/testing/penpal/Cargo.toml +++ b/parachains/runtimes/testing/penpal/Cargo.toml @@ -18,7 +18,7 @@ substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", bran codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } hex-literal = { version = "0.3.4", optional = true } log = { version = "0.4.16", default-features = false } -scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } smallvec = "1.10.0" # Substrate diff --git a/parachains/runtimes/testing/rococo-parachain/Cargo.toml b/parachains/runtimes/testing/rococo-parachain/Cargo.toml index d16847a8cd..c2cfae89cc 100644 --- a/parachains/runtimes/testing/rococo-parachain/Cargo.toml +++ b/parachains/runtimes/testing/rococo-parachain/Cargo.toml @@ -7,7 +7,7 @@ description = "Simple runtime used by the rococo parachain(s)" [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } -scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } # Substrate frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } diff --git a/primitives/parachain-inherent/Cargo.toml b/primitives/parachain-inherent/Cargo.toml index 70e279f00c..027cd280ac 100644 --- a/primitives/parachain-inherent/Cargo.toml +++ b/primitives/parachain-inherent/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] async-trait = { version = "0.1.58", optional = true } codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [ "derive" ] } -scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } tracing = { version = "0.1.37", optional = true } # Substrate diff --git a/test/runtime/Cargo.toml b/test/runtime/Cargo.toml index c0383a7235..3a7df71c0d 100644 --- a/test/runtime/Cargo.toml +++ b/test/runtime/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } -scale-info = { version = "2.2.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.0", default-features = false, features = ["derive"] } # Substrate frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } From ca213eaa4968b63e88ef604849341e12b4e0886c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Nov 2022 00:09:52 +0100 Subject: [PATCH 48/48] Bump syn from 1.0.102 to 1.0.103 (#1796) Bumps [syn](https://github.com/dtolnay/syn) from 1.0.102 to 1.0.103. - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/1.0.102...1.0.103) --- updated-dependencies: - dependency-name: syn dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- pallets/parachain-system/proc-macro/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3d1cba3eb0..ac4347eeeb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -11882,9 +11882,9 @@ checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" [[package]] name = "syn" -version = "1.0.102" +version = "1.0.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fcd952facd492f9be3ef0d0b7032a6e442ee9b361d4acc2b1d0c4aaa5f613a1" +checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d" dependencies = [ "proc-macro2", "quote", diff --git a/pallets/parachain-system/proc-macro/Cargo.toml b/pallets/parachain-system/proc-macro/Cargo.toml index 0620702e42..1074771126 100644 --- a/pallets/parachain-system/proc-macro/Cargo.toml +++ b/pallets/parachain-system/proc-macro/Cargo.toml @@ -9,7 +9,7 @@ description = "Proc macros provided by the parachain-system pallet" proc-macro = true [dependencies] -syn = "1.0.102" +syn = "1.0.103" proc-macro2 = "1.0.47" quote = "1.0.21" proc-macro-crate = "1.2.1"