Unverified Commit 5898cafc authored by André Silva's avatar André Silva Committed by GitHub
Browse files

node: migrate grandpa voting rule to async api (#2422)



* node: migrate grandpa voting rule to async api

* node: fix grandpa voting rule tests

* "Update Substrate"

* update Substrate

Co-authored-by: parity-processbot <>
Co-authored-by: asynchronous rob's avatarRobert Habermeier <rphmeier@gmail.com>
parent d376fe66
Pipeline #124217 passed with stages
in 33 minutes and 52 seconds
......@@ -1537,9 +1537,9 @@ dependencies = [
[[package]]
name = "finality-grandpa"
version = "0.13.0"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2cd795898c348a8ec9edc66ec9e014031c764d4c88cc26d09b492cd93eb41339"
checksum = "c6447e2f8178843749e8c8003206def83ec124a7859475395777a28b5338647c"
dependencies = [
"either",
"futures 0.3.12",
......@@ -1590,7 +1590,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "fork-tree"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"parity-scale-codec",
]
......@@ -1608,7 +1608,7 @@ dependencies = [
[[package]]
name = "frame-benchmarking"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-support",
"frame-system",
......@@ -1626,7 +1626,7 @@ dependencies = [
[[package]]
name = "frame-benchmarking-cli"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"Inflector",
"chrono",
......@@ -1649,7 +1649,7 @@ dependencies = [
[[package]]
name = "frame-executive"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-support",
"frame-system",
......@@ -1665,7 +1665,7 @@ dependencies = [
[[package]]
name = "frame-metadata"
version = "13.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"parity-scale-codec",
"serde",
......@@ -1676,7 +1676,7 @@ dependencies = [
[[package]]
name = "frame-support"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"bitflags",
"frame-metadata",
......@@ -1702,7 +1702,7 @@ dependencies = [
[[package]]
name = "frame-support-procedural"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"Inflector",
"frame-support-procedural-tools",
......@@ -1714,7 +1714,7 @@ dependencies = [
[[package]]
name = "frame-support-procedural-tools"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-support-procedural-tools-derive",
"proc-macro-crate",
......@@ -1726,7 +1726,7 @@ dependencies = [
[[package]]
name = "frame-support-procedural-tools-derive"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"proc-macro2 1.0.24",
"quote 1.0.7",
......@@ -1736,7 +1736,7 @@ dependencies = [
[[package]]
name = "frame-system"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-support",
"impl-trait-for-tuples",
......@@ -1752,7 +1752,7 @@ dependencies = [
[[package]]
name = "frame-system-benchmarking"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-benchmarking",
"frame-support",
......@@ -1766,7 +1766,7 @@ dependencies = [
[[package]]
name = "frame-system-rpc-runtime-api"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"parity-scale-codec",
"sp-api",
......@@ -4033,7 +4033,7 @@ checksum = "13370dae44474229701bb69b90b4f4dca6404cb0357a2d50d635f1171dc3aa7b"
[[package]]
name = "pallet-authority-discovery"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-support",
"frame-system",
......@@ -4049,7 +4049,7 @@ dependencies = [
[[package]]
name = "pallet-authorship"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-support",
"frame-system",
......@@ -4064,7 +4064,7 @@ dependencies = [
[[package]]
name = "pallet-babe"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-benchmarking",
"frame-support",
......@@ -4089,7 +4089,7 @@ dependencies = [
[[package]]
name = "pallet-balances"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-benchmarking",
"frame-support",
......@@ -4103,7 +4103,7 @@ dependencies = [
[[package]]
name = "pallet-bounties"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-benchmarking",
"frame-support",
......@@ -4118,7 +4118,7 @@ dependencies = [
[[package]]
name = "pallet-collective"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-benchmarking",
"frame-support",
......@@ -4134,7 +4134,7 @@ dependencies = [
[[package]]
name = "pallet-democracy"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-benchmarking",
"frame-support",
......@@ -4149,7 +4149,7 @@ dependencies = [
[[package]]
name = "pallet-elections-phragmen"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-benchmarking",
"frame-support",
......@@ -4164,7 +4164,7 @@ dependencies = [
[[package]]
name = "pallet-grandpa"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-benchmarking",
"frame-support",
......@@ -4185,7 +4185,7 @@ dependencies = [
[[package]]
name = "pallet-identity"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"enumflags2",
"frame-benchmarking",
......@@ -4201,7 +4201,7 @@ dependencies = [
[[package]]
name = "pallet-im-online"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-benchmarking",
"frame-support",
......@@ -4220,7 +4220,7 @@ dependencies = [
[[package]]
name = "pallet-indices"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-benchmarking",
"frame-support",
......@@ -4237,7 +4237,7 @@ dependencies = [
[[package]]
name = "pallet-membership"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-support",
"frame-system",
......@@ -4251,7 +4251,7 @@ dependencies = [
[[package]]
name = "pallet-multisig"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-benchmarking",
"frame-support",
......@@ -4267,7 +4267,7 @@ dependencies = [
[[package]]
name = "pallet-nicks"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-support",
"frame-system",
......@@ -4281,7 +4281,7 @@ dependencies = [
[[package]]
name = "pallet-offences"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-support",
"frame-system",
......@@ -4296,7 +4296,7 @@ dependencies = [
[[package]]
name = "pallet-offences-benchmarking"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-benchmarking",
"frame-support",
......@@ -4317,7 +4317,7 @@ dependencies = [
[[package]]
name = "pallet-proxy"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-benchmarking",
"frame-support",
......@@ -4333,7 +4333,7 @@ dependencies = [
[[package]]
name = "pallet-randomness-collective-flip"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-support",
"frame-system",
......@@ -4346,7 +4346,7 @@ dependencies = [
[[package]]
name = "pallet-recovery"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"enumflags2",
"frame-support",
......@@ -4361,7 +4361,7 @@ dependencies = [
[[package]]
name = "pallet-scheduler"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-benchmarking",
"frame-support",
......@@ -4376,7 +4376,7 @@ dependencies = [
[[package]]
name = "pallet-session"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-support",
"frame-system",
......@@ -4396,7 +4396,7 @@ dependencies = [
[[package]]
name = "pallet-session-benchmarking"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-benchmarking",
"frame-support",
......@@ -4412,7 +4412,7 @@ dependencies = [
[[package]]
name = "pallet-society"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-support",
"frame-system",
......@@ -4426,7 +4426,7 @@ dependencies = [
[[package]]
name = "pallet-staking"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-benchmarking",
"frame-support",
......@@ -4448,7 +4448,7 @@ dependencies = [
[[package]]
name = "pallet-staking-reward-curve"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"proc-macro-crate",
"proc-macro2 1.0.24",
......@@ -4459,7 +4459,7 @@ dependencies = [
[[package]]
name = "pallet-sudo"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-support",
"frame-system",
......@@ -4473,7 +4473,7 @@ dependencies = [
[[package]]
name = "pallet-timestamp"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-benchmarking",
"frame-support",
......@@ -4491,7 +4491,7 @@ dependencies = [
[[package]]
name = "pallet-tips"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-benchmarking",
"frame-support",
......@@ -4506,7 +4506,7 @@ dependencies = [
[[package]]
name = "pallet-transaction-payment"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-support",
"frame-system",
......@@ -4522,7 +4522,7 @@ dependencies = [
[[package]]
name = "pallet-transaction-payment-rpc"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"jsonrpc-core",
"jsonrpc-core-client",
......@@ -4539,7 +4539,7 @@ dependencies = [
[[package]]
name = "pallet-transaction-payment-rpc-runtime-api"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"pallet-transaction-payment",
"parity-scale-codec",
......@@ -4550,7 +4550,7 @@ dependencies = [
[[package]]
name = "pallet-treasury"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-benchmarking",
"frame-support",
......@@ -4566,7 +4566,7 @@ dependencies = [
[[package]]
name = "pallet-utility"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"frame-benchmarking",
"frame-support",
......@@ -4582,7 +4582,7 @@ dependencies = [
[[package]]
name = "pallet-vesting"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"enumflags2",
"frame-benchmarking",
......@@ -6953,7 +6953,7 @@ dependencies = [
[[package]]
name = "sc-authority-discovery"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"async-trait",
"derive_more",
......@@ -6981,7 +6981,7 @@ dependencies = [
[[package]]
name = "sc-basic-authorship"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"futures 0.3.12",
"futures-timer 3.0.2",
......@@ -7004,7 +7004,7 @@ dependencies = [
[[package]]
name = "sc-block-builder"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"parity-scale-codec",
"sc-client-api",
......@@ -7021,7 +7021,7 @@ dependencies = [
[[package]]
name = "sc-chain-spec"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"impl-trait-for-tuples",
"parity-scale-codec",
......@@ -7042,7 +7042,7 @@ dependencies = [
[[package]]
name = "sc-chain-spec-derive"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"proc-macro-crate",
"proc-macro2 1.0.24",
......@@ -7053,7 +7053,7 @@ dependencies = [
[[package]]
name = "sc-cli"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"chrono",
"fdlimit",
......@@ -7091,7 +7091,7 @@ dependencies = [
[[package]]
name = "sc-client-api"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"derive_more",
"fnv",
......@@ -7125,7 +7125,7 @@ dependencies = [
[[package]]
name = "sc-client-db"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"blake2-rfc",
"hash-db",
......@@ -7155,7 +7155,7 @@ dependencies = [
[[package]]
name = "sc-consensus"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"sc-client-api",
"sp-blockchain",
......@@ -7166,7 +7166,7 @@ dependencies = [
[[package]]
name = "sc-consensus-babe"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"derive_more",
"fork-tree",
......@@ -7212,7 +7212,7 @@ dependencies = [
[[package]]
name = "sc-consensus-babe-rpc"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"derive_more",
"futures 0.3.12",
......@@ -7236,7 +7236,7 @@ dependencies = [
[[package]]
name = "sc-consensus-epochs"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"fork-tree",
"parity-scale-codec",
......@@ -7249,7 +7249,7 @@ dependencies = [
[[package]]
name = "sc-consensus-slots"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"futures 0.3.12",
"futures-timer 3.0.2",
......@@ -7275,7 +7275,7 @@ dependencies = [
[[package]]
name = "sc-consensus-uncles"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"log",
"sc-client-api",
......@@ -7289,7 +7289,7 @@ dependencies = [
[[package]]
name = "sc-executor"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"derive_more",
"lazy_static",
......@@ -7318,7 +7318,7 @@ dependencies = [
[[package]]
name = "sc-executor-common"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"derive_more",
"parity-scale-codec",
......@@ -7334,7 +7334,7 @@ dependencies = [
[[package]]
name = "sc-executor-wasmi"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"log",
"parity-scale-codec",
......@@ -7349,7 +7349,7 @@ dependencies = [
[[package]]
name = "sc-executor-wasmtime"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"log",
"parity-scale-codec",
......@@ -7367,9 +7367,10 @@ dependencies = [
[[package]]
name = "sc-finality-grandpa"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"derive_more",
"dyn-clone",
"finality-grandpa",
"fork-tree",
"futures 0.3.12",
......@@ -7405,7 +7406,7 @@ dependencies = [
[[package]]
name = "sc-finality-grandpa-rpc"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"derive_more",
"finality-grandpa",
......@@ -7429,7 +7430,7 @@ dependencies = [
[[package]]
name = "sc-finality-grandpa-warp-sync"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"derive_more",
"futures 0.3.12",
......@@ -7449,7 +7450,7 @@ dependencies = [
[[package]]
name = "sc-informant"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"ansi_term 0.12.1",
"futures 0.3.12",
......@@ -7467,7 +7468,7 @@ dependencies = [
[[package]]
name = "sc-keystore"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"async-trait",
"derive_more",
......@@ -7487,7 +7488,7 @@ dependencies = [
[[package]]
name = "sc-light"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"hash-db",
"lazy_static",
......@@ -7506,7 +7507,7 @@ dependencies = [
[[package]]
name = "sc-network"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"async-std",
"async-trait",
......@@ -7559,7 +7560,7 @@ dependencies = [
[[package]]
name = "sc-network-gossip"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"futures 0.3.12",
"futures-timer 3.0.2",
......@@ -7575,7 +7576,7 @@ dependencies = [
[[package]]
name = "sc-offchain"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"bytes 0.5.6",
"fnv",
......@@ -7602,7 +7603,7 @@ dependencies = [
[[package]]
name = "sc-peerset"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"futures 0.3.12",
"libp2p",
......@@ -7615,7 +7616,7 @@ dependencies = [
[[package]]
name = "sc-proposer-metrics"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"log",
"substrate-prometheus-endpoint",
......@@ -7624,7 +7625,7 @@ dependencies = [
[[package]]
name = "sc-rpc"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"futures 0.3.12",
"hash-db",
......@@ -7658,7 +7659,7 @@ dependencies = [
[[package]]
name = "sc-rpc-api"
version = "0.9.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"derive_more",
"futures 0.3.12",
......@@ -7682,7 +7683,7 @@ dependencies = [
[[package]]
name = "sc-rpc-server"
version = "3.0.0"
source = "git+https://github.com/paritytech/substrate#13b699868330fe60c272eeda1c9b326b0e222173"
source = "git+https://github.com/paritytech/substrate#e03ca38d45f438932ec92bf69a40b6b16b6ec643"
dependencies = [
"futures 0.1.29",