diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index b2888f12471..a7c87b1a8d6 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-compiler
+ protoc --version
+
- name: Checkout repository
uses: actions/checkout@v3
diff --git a/.github/workflows/fmt-check.yml b/.github/workflows/fmt-check.yml
new file mode 100644
index 00000000000..844dda46b8b
--- /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
diff --git a/.github/workflows/release-10_rc-automation.yml b/.github/workflows/release-10_rc-automation.yml
index 740b1860e12..1357df0c532 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 2869aa5344e..68d0a383523 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 4a12bdb1fde..155b4500c0e 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 }}
diff --git a/Cargo.lock b/Cargo.lock
index 17b6139822e..675a857bb7c 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,16 +6110,52 @@ 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",
+ "frame-system",
+ "parity-scale-codec",
+ "scale-info",
+ "sp-io",
+ "sp-runtime",
+ "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",
@@ -6103,7 +6164,7 @@ dependencies = [
[[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",
@@ -12075,18 +12155,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",
@@ -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/client/relay-chain-interface/Cargo.toml b/client/relay-chain-interface/Cargo.toml
index 14423badcc5..bfca55b31a5 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"
diff --git a/parachain-template/runtime/src/lib.rs b/parachain-template/runtime/src/lib.rs
index 3ad6a055e82..a52b4982636 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 1ad4dc2f85c..c192d6e2a7e 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/contracts/contracts-rococo/src/contracts.rs b/parachains/runtimes/contracts/contracts-rococo/src/contracts.rs
index db59f925276..dab23f07b78 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>;
}
diff --git a/parachains/runtimes/starters/seedling/src/lib.rs b/parachains/runtimes/starters/seedling/src/lib.rs
index 84327c4dc7d..67cc9dede21 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 4eefd1befaa..2d91a0c015b 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 0a18f70f0f4..dddb71773f6 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 ec6a08b0b42..21d784aae65 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 4ac173efef7..786590b8b91 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! {