From 4402e6dad161a39ac0a28ff74a99152bd958ae1c Mon Sep 17 00:00:00 2001 From: Alexandru Vasile Date: Tue, 21 Mar 2023 19:52:43 +0200 Subject: [PATCH 1/6] primitives/core: Derive scale_info::TypeInfo for runtime APIs Signed-off-by: Alexandru Vasile --- Cargo.lock | 1 + primitives/core/Cargo.toml | 2 ++ primitives/core/src/lib.rs | 3 ++- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index d2a9576e696..7e8603c4395 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2182,6 +2182,7 @@ dependencies = [ "polkadot-core-primitives", "polkadot-parachain", "polkadot-primitives", + "scale-info", "sp-api", "sp-runtime", "sp-std", diff --git a/primitives/core/Cargo.toml b/primitives/core/Cargo.toml index bc00a655563..d5a809451ac 100644 --- a/primitives/core/Cargo.toml +++ b/primitives/core/Cargo.toml @@ -6,6 +6,7 @@ edition = "2021" [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [ "derive" ] } +scale-info = { version = "2.3.1", default-features = false, features = ["derive"] } # Substrate sp-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } @@ -23,6 +24,7 @@ xcm = { git = "https://github.com/paritytech/polkadot", default-features = false default = [ "std" ] std = [ "codec/std", + "scale-info/std", "sp-api/std", "sp-runtime/std", "sp-std/std", diff --git a/primitives/core/src/lib.rs b/primitives/core/src/lib.rs index d94224927dc..52770cdf716 100644 --- a/primitives/core/src/lib.rs +++ b/primitives/core/src/lib.rs @@ -20,6 +20,7 @@ use codec::{Decode, Encode}; use polkadot_parachain::primitives::HeadData; +use scale_info::TypeInfo; use sp_runtime::{traits::Block as BlockT, RuntimeDebug}; use sp_std::prelude::*; @@ -229,7 +230,7 @@ impl CollationInfoV1 { } /// Information about a collation. -#[derive(Clone, Debug, codec::Decode, codec::Encode, PartialEq)] +#[derive(Clone, Debug, codec::Decode, codec::Encode, PartialEq, TypeInfo)] pub struct CollationInfo { /// Messages destined to be interpreted by the Relay chain itself. pub upward_messages: Vec, From da9fdcae472b09a9558849e43bba99480b807c63 Mon Sep 17 00:00:00 2001 From: Alexandru Vasile Date: Tue, 21 Mar 2023 20:17:21 +0200 Subject: [PATCH 2/6] parachains: Derive scale_info::TypeInfo for FungiblesAccessError Signed-off-by: Alexandru Vasile --- parachains/runtimes/assets/common/src/runtime_api.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parachains/runtimes/assets/common/src/runtime_api.rs b/parachains/runtimes/assets/common/src/runtime_api.rs index 6d060f22687..b4b0de3082a 100644 --- a/parachains/runtimes/assets/common/src/runtime_api.rs +++ b/parachains/runtimes/assets/common/src/runtime_api.rs @@ -16,12 +16,12 @@ //! Runtime API definition for fungibles. use codec::{Codec, Decode, Encode}; -use frame_support::RuntimeDebug; +use frame_support::{RuntimeDebug, TypeInfo}; use sp_std::vec::Vec; use xcm::latest::MultiAsset; /// The possible errors that can happen querying the storage of assets. -#[derive(Eq, PartialEq, Encode, Decode, RuntimeDebug)] +#[derive(Eq, PartialEq, Encode, Decode, RuntimeDebug, TypeInfo)] pub enum FungiblesAccessError { /// `MultiLocation` to `AssetId`/`ClassId` conversion failed. AssetIdConversionFailed, From e13ac2ab55a0f35f5ba3cb6b5a5206471890d08c Mon Sep 17 00:00:00 2001 From: Alexandru Vasile Date: Wed, 22 Mar 2023 15:23:36 +0200 Subject: [PATCH 3/6] parachains: Fix `TypeInfo` import path Signed-off-by: Alexandru Vasile --- Cargo.lock | 1 + parachains/runtimes/assets/common/Cargo.toml | 1 + parachains/runtimes/assets/common/src/runtime_api.rs | 4 ++-- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7e8603c4395..63e384f9206 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -356,6 +356,7 @@ dependencies = [ "frame-support", "parachains-common", "parity-scale-codec", + "scale-info", "sp-api", "sp-std", "substrate-wasm-builder", diff --git a/parachains/runtimes/assets/common/Cargo.toml b/parachains/runtimes/assets/common/Cargo.toml index c551a97757b..7707b1ae22f 100644 --- a/parachains/runtimes/assets/common/Cargo.toml +++ b/parachains/runtimes/assets/common/Cargo.toml @@ -7,6 +7,7 @@ description = "Assets common utilities" [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } +scale-info = { version = "2.3.1", default-features = false, features = ["derive"] } # Substrate frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } diff --git a/parachains/runtimes/assets/common/src/runtime_api.rs b/parachains/runtimes/assets/common/src/runtime_api.rs index b4b0de3082a..36a8df1271e 100644 --- a/parachains/runtimes/assets/common/src/runtime_api.rs +++ b/parachains/runtimes/assets/common/src/runtime_api.rs @@ -16,12 +16,12 @@ //! Runtime API definition for fungibles. use codec::{Codec, Decode, Encode}; -use frame_support::{RuntimeDebug, TypeInfo}; +use frame_support::RuntimeDebug; use sp_std::vec::Vec; use xcm::latest::MultiAsset; /// The possible errors that can happen querying the storage of assets. -#[derive(Eq, PartialEq, Encode, Decode, RuntimeDebug, TypeInfo)] +#[derive(Eq, PartialEq, Encode, Decode, RuntimeDebug, scale_info::TypeInfo)] pub enum FungiblesAccessError { /// `MultiLocation` to `AssetId`/`ClassId` conversion failed. AssetIdConversionFailed, From 130c74d7f13acd6d6490b6ca9f284708e24ed986 Mon Sep 17 00:00:00 2001 From: parity-processbot <> Date: Tue, 11 Apr 2023 11:08:25 +0000 Subject: [PATCH 4/6] update lockfile for {"polkadot", "substrate"} --- Cargo.lock | 529 +++++++++++++++++++++++++++-------------------------- 1 file changed, 271 insertions(+), 258 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c77aef2c5a7..e20de817a01 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -524,7 +524,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "hash-db", "log", @@ -3370,7 +3370,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "parity-scale-codec", ] @@ -3393,7 +3393,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-support", "frame-support-procedural", @@ -3418,7 +3418,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "Inflector", "array-bytes 4.2.0", @@ -3465,7 +3465,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -3476,7 +3476,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -3493,7 +3493,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-support", "frame-system", @@ -3509,9 +3509,9 @@ dependencies = [ [[package]] name = "frame-metadata" -version = "15.0.0" +version = "15.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df6bb8542ef006ef0de09a5c4420787d79823c0ed7924225822362fd2bf2ff2d" +checksum = "878babb0b136e731cc77ec2fd883ff02745ff21e6fb662729953d44923df009c" dependencies = [ "cfg-if", "parity-scale-codec", @@ -3522,7 +3522,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "futures", "log", @@ -3538,7 +3538,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "bitflags", "environmental", @@ -3571,7 +3571,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "Inflector", "cfg-expr", @@ -3587,7 +3587,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3599,7 +3599,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "proc-macro2", "quote", @@ -3609,7 +3609,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-support", "log", @@ -3627,7 +3627,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -3642,7 +3642,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "parity-scale-codec", "sp-api", @@ -3651,7 +3651,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-support", "parity-scale-codec", @@ -4620,7 +4620,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "bitvec", "frame-benchmarking", @@ -4718,7 +4718,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "frame-support", "polkadot-primitives", @@ -5572,7 +5572,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "futures", "log", @@ -5591,7 +5591,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "anyhow", "jsonrpsee", @@ -6090,7 +6090,7 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "array-bytes 4.2.0", "frame-benchmarking", @@ -6111,7 +6111,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6129,7 +6129,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6144,7 +6144,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-support", "frame-system", @@ -6160,7 +6160,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-support", "frame-system", @@ -6176,7 +6176,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-support", "frame-system", @@ -6190,7 +6190,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6214,7 +6214,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6234,7 +6234,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6249,7 +6249,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-support", "frame-system", @@ -6268,7 +6268,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "array-bytes 4.2.0", "binary-merkle-tree", @@ -6292,7 +6292,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6310,7 +6310,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6354,7 +6354,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6371,7 +6371,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "bitflags", "environmental", @@ -6401,7 +6401,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "bitflags", "parity-scale-codec", @@ -6414,7 +6414,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "proc-macro2", "quote", @@ -6424,7 +6424,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6441,7 +6441,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6459,7 +6459,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6482,7 +6482,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6495,7 +6495,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6513,7 +6513,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6531,7 +6531,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6554,7 +6554,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "enumflags2", "frame-benchmarking", @@ -6570,7 +6570,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6590,7 +6590,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6607,7 +6607,7 @@ dependencies = [ [[package]] name = "pallet-insecure-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-support", "frame-system", @@ -6621,7 +6621,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6638,7 +6638,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6655,7 +6655,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6671,7 +6671,7 @@ dependencies = [ [[package]] name = "pallet-nfts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "enumflags2", "frame-benchmarking", @@ -6689,7 +6689,7 @@ dependencies = [ [[package]] name = "pallet-nfts-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-support", "pallet-nfts", @@ -6700,7 +6700,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6716,7 +6716,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-support", "frame-system", @@ -6733,7 +6733,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6753,7 +6753,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -6764,7 +6764,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-support", "frame-system", @@ -6781,7 +6781,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6805,7 +6805,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6822,7 +6822,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6837,7 +6837,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6855,7 +6855,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6870,7 +6870,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6889,7 +6889,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6906,7 +6906,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-support", "frame-system", @@ -6927,7 +6927,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -6943,7 +6943,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-support", "frame-system", @@ -6957,7 +6957,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6980,7 +6980,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6991,7 +6991,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "log", "sp-arithmetic", @@ -7000,7 +7000,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "parity-scale-codec", "sp-api", @@ -7009,7 +7009,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -7026,7 +7026,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-support", "frame-system", @@ -7055,7 +7055,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -7073,7 +7073,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -7092,7 +7092,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-support", "frame-system", @@ -7108,7 +7108,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -7124,7 +7124,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -7136,7 +7136,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -7153,7 +7153,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -7168,7 +7168,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -7184,7 +7184,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -7199,7 +7199,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-benchmarking", "frame-support", @@ -7214,7 +7214,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -7235,7 +7235,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "frame-benchmarking", "frame-support", @@ -7784,7 +7784,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "futures", "polkadot-node-jaeger", @@ -7800,7 +7800,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7814,7 +7814,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "derive_more", "fatality", @@ -7837,7 +7837,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "fatality", "futures", @@ -7858,7 +7858,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "clap 4.1.14", "frame-benchmarking-cli", @@ -7886,7 +7886,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "async-trait", "frame-benchmarking", @@ -7929,7 +7929,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "always-assert", "bitvec", @@ -7951,7 +7951,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "parity-scale-codec", "scale-info", @@ -7963,7 +7963,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "derive_more", "fatality", @@ -7988,7 +7988,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -8002,7 +8002,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "futures", "futures-timer", @@ -8022,7 +8022,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "always-assert", "async-trait", @@ -8045,7 +8045,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "futures", "parity-scale-codec", @@ -8063,7 +8063,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "bitvec", "derive_more", @@ -8092,7 +8092,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "bitvec", "futures", @@ -8113,7 +8113,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "bitvec", "fatality", @@ -8132,7 +8132,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "futures", "polkadot-node-subsystem", @@ -8147,7 +8147,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "async-trait", "futures", @@ -8167,7 +8167,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "futures", "polkadot-node-metrics", @@ -8182,7 +8182,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "futures", "futures-timer", @@ -8199,7 +8199,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "fatality", "futures", @@ -8218,7 +8218,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "async-trait", "futures", @@ -8235,7 +8235,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "bitvec", "fatality", @@ -8253,7 +8253,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "always-assert", "assert_matches", @@ -8290,7 +8290,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "futures", "polkadot-node-primitives", @@ -8306,7 +8306,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "futures", "lru 0.9.0", @@ -8321,7 +8321,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "lazy_static", "log", @@ -8339,7 +8339,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "bs58", "futures", @@ -8358,7 +8358,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "async-trait", "derive_more", @@ -8380,7 +8380,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "bounded-vec", "futures", @@ -8403,7 +8403,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -8413,7 +8413,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "async-trait", "futures", @@ -8431,7 +8431,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "async-trait", "derive_more", @@ -8454,7 +8454,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "async-trait", "derive_more", @@ -8487,7 +8487,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "async-trait", "futures", @@ -8510,7 +8510,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "bounded-collections", "derive_more", @@ -8608,7 +8608,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -8624,7 +8624,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "bitvec", "hex-literal 0.3.4", @@ -8650,7 +8650,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "jsonrpsee", "mmr-rpc", @@ -8682,7 +8682,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "bitvec", "frame-benchmarking", @@ -8776,7 +8776,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "bitvec", "frame-benchmarking", @@ -8822,7 +8822,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "frame-support", "polkadot-primitives", @@ -8836,7 +8836,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "bs58", "parity-scale-codec", @@ -8848,7 +8848,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "bitflags", "bitvec", @@ -8892,7 +8892,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "async-trait", "frame-benchmarking-cli", @@ -9002,7 +9002,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -9023,7 +9023,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -9033,7 +9033,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -9058,7 +9058,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "bitvec", "frame-election-provider-support", @@ -9119,7 +9119,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "frame-benchmarking", "frame-system", @@ -9875,7 +9875,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "binary-merkle-tree", "frame-benchmarking", @@ -9961,7 +9961,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "frame-support", "polkadot-primitives", @@ -10208,7 +10208,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "log", "sp-core", @@ -10219,7 +10219,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "async-trait", "futures", @@ -10247,7 +10247,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "futures", "futures-timer", @@ -10270,7 +10270,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -10285,7 +10285,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -10304,7 +10304,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10315,7 +10315,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "array-bytes 4.2.0", "chrono", @@ -10355,7 +10355,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "fnv", "futures", @@ -10381,7 +10381,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "hash-db", "kvdb", @@ -10407,7 +10407,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "async-trait", "futures", @@ -10432,7 +10432,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "async-trait", "futures", @@ -10461,7 +10461,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "async-trait", "fork-tree", @@ -10500,7 +10500,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "futures", "jsonrpsee", @@ -10522,7 +10522,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -10557,7 +10557,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "futures", "jsonrpsee", @@ -10576,7 +10576,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "fork-tree", "parity-scale-codec", @@ -10589,7 +10589,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "ahash 0.8.2", "array-bytes 4.2.0", @@ -10629,7 +10629,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "finality-grandpa", "futures", @@ -10649,7 +10649,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "async-trait", "futures", @@ -10672,7 +10672,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "lru 0.8.1", "parity-scale-codec", @@ -10696,7 +10696,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -10709,7 +10709,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "log", "sc-allocator", @@ -10722,7 +10722,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "anyhow", "cfg-if", @@ -10740,7 +10740,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "ansi_term", "futures", @@ -10756,7 +10756,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -10771,7 +10771,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "array-bytes 4.2.0", "async-channel", @@ -10816,7 +10816,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "cid", "futures", @@ -10836,7 +10836,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -10864,7 +10864,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "ahash 0.8.2", "futures", @@ -10883,7 +10883,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "array-bytes 4.2.0", "futures", @@ -10905,7 +10905,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -10939,7 +10939,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "array-bytes 4.2.0", "futures", @@ -10959,7 +10959,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "array-bytes 4.2.0", "bytes", @@ -10990,7 +10990,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "futures", "libp2p", @@ -11003,7 +11003,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -11012,7 +11012,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "futures", "jsonrpsee", @@ -11042,7 +11042,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -11061,7 +11061,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "http", "jsonrpsee", @@ -11076,7 +11076,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "array-bytes 4.2.0", "futures", @@ -11102,7 +11102,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "async-trait", "directories", @@ -11168,7 +11168,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "log", "parity-scale-codec", @@ -11179,7 +11179,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "clap 4.1.14", "fs4", @@ -11195,7 +11195,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -11214,7 +11214,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "futures", "libc", @@ -11233,7 +11233,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "chrono", "futures", @@ -11252,7 +11252,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "ansi_term", "atty", @@ -11283,7 +11283,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11294,7 +11294,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "async-trait", "futures", @@ -11321,7 +11321,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "async-trait", "futures", @@ -11335,7 +11335,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "async-channel", "futures", @@ -11816,7 +11816,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "enumn", "parity-scale-codec", @@ -11893,13 +11893,15 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "hash-db", "log", "parity-scale-codec", + "scale-info", "sp-api-proc-macro", "sp-core", + "sp-metadata-ir", "sp-runtime", "sp-state-machine", "sp-std", @@ -11911,7 +11913,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "Inflector", "blake2", @@ -11925,7 +11927,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "parity-scale-codec", "scale-info", @@ -11938,7 +11940,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "integer-sqrt", "num-traits", @@ -11952,7 +11954,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "parity-scale-codec", "scale-info", @@ -11965,7 +11967,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "parity-scale-codec", "sp-api", @@ -11977,7 +11979,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "futures", "log", @@ -11995,7 +11997,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "async-trait", "futures", @@ -12010,7 +12012,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "async-trait", "parity-scale-codec", @@ -12028,7 +12030,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "async-trait", "merlin", @@ -12051,7 +12053,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "lazy_static", "parity-scale-codec", @@ -12070,7 +12072,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "finality-grandpa", "log", @@ -12088,7 +12090,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "parity-scale-codec", "scale-info", @@ -12100,7 +12102,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "parity-scale-codec", "scale-info", @@ -12113,7 +12115,7 @@ dependencies = [ [[package]] name = "sp-core" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "array-bytes 4.2.0", "bitflags", @@ -12156,7 +12158,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "blake2b_simd", "byteorder", @@ -12170,7 +12172,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "proc-macro2", "quote", @@ -12181,7 +12183,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -12190,7 +12192,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "proc-macro2", "quote", @@ -12200,7 +12202,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "environmental", "parity-scale-codec", @@ -12211,7 +12213,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -12226,7 +12228,7 @@ dependencies = [ [[package]] name = "sp-io" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "bytes", "ed25519", @@ -12252,7 +12254,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "lazy_static", "sp-core", @@ -12263,7 +12265,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "futures", "merlin", @@ -12279,16 +12281,27 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "thiserror", "zstd", ] +[[package]] +name = "sp-metadata-ir" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" +dependencies = [ + "frame-metadata", + "parity-scale-codec", + "scale-info", + "sp-std", +] + [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -12306,7 +12319,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "parity-scale-codec", "scale-info", @@ -12320,7 +12333,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "sp-api", "sp-core", @@ -12330,7 +12343,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "backtrace", "lazy_static", @@ -12340,7 +12353,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "rustc-hash", "serde", @@ -12350,7 +12363,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "either", "hash256-std-hasher", @@ -12372,7 +12385,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -12390,7 +12403,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "Inflector", "proc-macro-crate", @@ -12402,7 +12415,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "serde", "serde_json", @@ -12411,7 +12424,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "parity-scale-codec", "scale-info", @@ -12425,7 +12438,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "parity-scale-codec", "scale-info", @@ -12437,7 +12450,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "hash-db", "log", @@ -12457,12 +12470,12 @@ dependencies = [ [[package]] name = "sp-std" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" [[package]] name = "sp-storage" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "impl-serde", "parity-scale-codec", @@ -12475,7 +12488,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "async-trait", "futures-timer", @@ -12490,7 +12503,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "parity-scale-codec", "sp-std", @@ -12502,7 +12515,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "sp-api", "sp-runtime", @@ -12511,7 +12524,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "async-trait", "log", @@ -12527,7 +12540,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "ahash 0.8.2", "hash-db", @@ -12550,7 +12563,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "impl-serde", "parity-scale-codec", @@ -12567,7 +12580,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -12578,7 +12591,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -12592,7 +12605,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "parity-scale-codec", "scale-info", @@ -12916,7 +12929,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "platforms 2.0.0", ] @@ -12924,7 +12937,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -12943,7 +12956,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "hyper", "log", @@ -12955,7 +12968,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "async-trait", "jsonrpsee", @@ -12968,7 +12981,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "jsonrpsee", "log", @@ -12987,7 +13000,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -13013,7 +13026,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "futures", "substrate-test-utils-derive", @@ -13023,7 +13036,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -13034,7 +13047,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "ansi_term", "build-helper", @@ -13161,7 +13174,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "frame-support", "polkadot-primitives", @@ -13551,7 +13564,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -13562,7 +13575,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -13692,7 +13705,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#7bbfe737a180e548ace7e819099dcb62cf48fa11" +source = "git+https://github.com/paritytech/substrate?branch=master#416b0f50bba519146ec7ea45a67980b45cd658e7" dependencies = [ "async-trait", "clap 4.1.14", @@ -14620,7 +14633,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "bitvec", "frame-benchmarking", @@ -14712,7 +14725,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "frame-support", "polkadot-primitives", @@ -15148,7 +15161,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "bounded-collections", "derivative", @@ -15164,7 +15177,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "frame-support", "frame-system", @@ -15185,7 +15198,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "environmental", "frame-benchmarking", @@ -15205,7 +15218,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.39" -source = "git+https://github.com/paritytech/polkadot?branch=master#dc230b323b5baeb9b4297430ed539b208d30bf6a" +source = "git+https://github.com/paritytech/polkadot?branch=master#dbae30efe080a1d41fe54ef4da8af47614c9ca93" dependencies = [ "Inflector", "proc-macro2", From 5e444cfc93f00a1e9e3d7b78533668f9cc4013cc Mon Sep 17 00:00:00 2001 From: Alexandru Vasile Date: Tue, 11 Apr 2023 14:52:57 +0300 Subject: [PATCH 5/6] Adjust testing for the new API Signed-off-by: Alexandru Vasile --- test/service/src/lib.rs | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/test/service/src/lib.rs b/test/service/src/lib.rs index e34237d1017..5b38a53afb4 100644 --- a/test/service/src/lib.rs +++ b/test/service/src/lib.rs @@ -21,6 +21,7 @@ pub mod chain_spec; mod genesis; +use sc_executor::{HeapAllocStrategy, WasmExecutor, DEFAULT_HEAP_ALLOC_STRATEGY}; use std::{ future::Future, net::{IpAddr, Ipv4Addr, SocketAddr}, @@ -184,12 +185,20 @@ pub fn new_partial( >, sc_service::Error, > { - let executor = sc_executor::NativeElseWasmExecutor::::new( - config.wasm_method, - config.default_heap_pages, - config.max_runtime_instances, - config.runtime_cache_size, - ); + let heap_pages = config + .default_heap_pages + .map_or(DEFAULT_HEAP_ALLOC_STRATEGY, |h| HeapAllocStrategy::Static { extra_pages: h as _ }); + + let wasm = WasmExecutor::builder() + .with_execution_method(config.wasm_method) + .with_onchain_heap_alloc_strategy(heap_pages) + .with_offchain_heap_alloc_strategy(heap_pages) + .with_max_runtime_instances(config.max_runtime_instances) + .with_runtime_cache_size(config.runtime_cache_size) + .build(); + + let executor = + sc_executor::NativeElseWasmExecutor::::new_with_wasm_executor(wasm); let (client, backend, keystore_container, task_manager) = sc_service::new_full_parts::(config, None, executor)?; From 15ac02665a84059f71d55bbc96e72f42f14ba745 Mon Sep 17 00:00:00 2001 From: Alexandru Vasile Date: Tue, 11 Apr 2023 15:07:06 +0300 Subject: [PATCH 6/6] Adjust deprecated methods Signed-off-by: Alexandru Vasile --- parachain-template/node/src/service.rs | 23 ++++++++++++++++------- polkadot-parachain/src/service.rs | 20 ++++++++++++-------- test/client/src/lib.rs | 17 +++++++++-------- 3 files changed, 37 insertions(+), 23 deletions(-) diff --git a/parachain-template/node/src/service.rs b/parachain-template/node/src/service.rs index 86d85f18faa..6fc04ef91d5 100644 --- a/parachain-template/node/src/service.rs +++ b/parachain-template/node/src/service.rs @@ -22,7 +22,9 @@ use cumulus_relay_chain_interface::RelayChainInterface; // Substrate Imports use frame_benchmarking_cli::SUBSTRATE_REFERENCE_HARDWARE; use sc_consensus::ImportQueue; -use sc_executor::NativeElseWasmExecutor; +use sc_executor::{ + HeapAllocStrategy, NativeElseWasmExecutor, WasmExecutor, DEFAULT_HEAP_ALLOC_STRATEGY, +}; use sc_network::NetworkBlock; use sc_network_sync::SyncingService; use sc_service::{Configuration, PartialComponents, TFullBackend, TFullClient, TaskManager}; @@ -81,12 +83,19 @@ pub fn new_partial( }) .transpose()?; - let executor = ParachainExecutor::new( - config.wasm_method, - config.default_heap_pages, - config.max_runtime_instances, - config.runtime_cache_size, - ); + let heap_pages = config + .default_heap_pages + .map_or(DEFAULT_HEAP_ALLOC_STRATEGY, |h| HeapAllocStrategy::Static { extra_pages: h as _ }); + + let wasm = WasmExecutor::builder() + .with_execution_method(config.wasm_method) + .with_onchain_heap_alloc_strategy(heap_pages) + .with_offchain_heap_alloc_strategy(heap_pages) + .with_max_runtime_instances(config.max_runtime_instances) + .with_runtime_cache_size(config.runtime_cache_size) + .build(); + + let executor = ParachainExecutor::new_with_wasm_executor(wasm); let (client, backend, keystore_container, task_manager) = sc_service::new_full_parts::( diff --git a/polkadot-parachain/src/service.rs b/polkadot-parachain/src/service.rs index ee5ae0572a8..000ebef80fd 100644 --- a/polkadot-parachain/src/service.rs +++ b/polkadot-parachain/src/service.rs @@ -42,7 +42,7 @@ use sc_consensus::{ import_queue::{BasicQueue, Verifier as VerifierT}, BlockImportParams, ImportQueue, }; -use sc_executor::WasmExecutor; +use sc_executor::{HeapAllocStrategy, WasmExecutor, DEFAULT_HEAP_ALLOC_STRATEGY}; use sc_network::NetworkBlock; use sc_network_sync::SyncingService; use sc_service::{Configuration, PartialComponents, TFullBackend, TFullClient, TaskManager}; @@ -257,13 +257,17 @@ where }) .transpose()?; - let executor = sc_executor::WasmExecutor::::new( - config.wasm_method, - config.default_heap_pages, - config.max_runtime_instances, - None, - config.runtime_cache_size, - ); + let heap_pages = config + .default_heap_pages + .map_or(DEFAULT_HEAP_ALLOC_STRATEGY, |h| HeapAllocStrategy::Static { extra_pages: h as _ }); + + let executor = sc_executor::WasmExecutor::::builder() + .with_execution_method(config.wasm_method) + .with_max_runtime_instances(config.max_runtime_instances) + .with_runtime_cache_size(config.runtime_cache_size) + .with_onchain_heap_alloc_strategy(heap_pages) + .with_offchain_heap_alloc_strategy(heap_pages) + .build(); let (client, backend, keystore_container, task_manager) = sc_service::new_full_parts::( diff --git a/test/client/src/lib.rs b/test/client/src/lib.rs index e50d4adf322..4008dca350d 100644 --- a/test/client/src/lib.rs +++ b/test/client/src/lib.rs @@ -22,7 +22,7 @@ use runtime::{ Balance, Block, BlockHashCount, GenesisConfig, Runtime, RuntimeCall, Signature, SignedExtra, SignedPayload, UncheckedExtrinsic, VERSION, }; -use sc_executor::{WasmExecutionMethod, WasmExecutor}; +use sc_executor::{HeapAllocStrategy, WasmExecutionMethod, WasmExecutor}; use sc_executor_common::runtime_blob::RuntimeBlob; use sc_service::client; use sp_blockchain::HeaderBackend; @@ -181,13 +181,14 @@ pub fn validate_block( let mut ext = TestExternalities::default(); let mut ext_ext = ext.ext(); - let executor = WasmExecutor::::new( - WasmExecutionMethod::Interpreted, - Some(1024), - 1, - None, - 2, - ); + let heap_pages = HeapAllocStrategy::Static { extra_pages: 1024 }; + let executor = WasmExecutor::::builder() + .with_execution_method(WasmExecutionMethod::Interpreted) + .with_max_runtime_instances(1) + .with_runtime_cache_size(2) + .with_onchain_heap_alloc_strategy(heap_pages) + .with_offchain_heap_alloc_strategy(heap_pages) + .build(); executor .uncached_call(