From fbe5628c65263cca6ba61e6f80f5e225145ad930 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Tue, 27 Jul 2021 14:04:58 +0200 Subject: [PATCH 1/2] Companion for Substrate#9165 https://github.com/paritytech/substrate/pull/9165 --- runtime/kusama/src/lib.rs | 15 +++++++++++-- runtime/polkadot/src/lib.rs | 15 +++++++++++-- runtime/rococo/src/lib.rs | 43 ++++++++++++------------------------- runtime/westend/src/lib.rs | 15 +++++++++++-- 4 files changed, 53 insertions(+), 35 deletions(-) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index f16c1da14543..45e8ba1fe2bb 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -81,7 +81,7 @@ use sp_core::OpaqueMetadata; use sp_staking::SessionIndex; use frame_support::{ parameter_types, construct_runtime, RuntimeDebug, PalletId, - traits::{KeyOwnerProofSystem, LockIdentifier, Filter, InstanceFilter, All}, + traits::{KeyOwnerProofSystem, LockIdentifier, Filter, InstanceFilter, All, OnRuntimeUpgrade}, weights::Weight, }; use frame_system::{EnsureRoot, EnsureOneOf}; @@ -1525,11 +1525,22 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPallets, - RemoveCollectiveFlip, + (RemoveCollectiveFlip, MigratePalletVersionToStorageVersion), >; /// The payload being signed in the transactions. pub type SignedPayload = generic::SignedPayload; +/// Migrate from `PalletVersion` to the new `StorageVersion` +pub struct MigratePalletVersionToStorageVersion; + +impl OnRuntimeUpgrade for MigratePalletVersionToStorageVersion { + fn on_runtime_upgrade() -> frame_support::weights::Weight { + frame_support::migrations::migrate_from_pallet_version_to_storage_version::( + &RocksDbWeight::get() + ) + } +} + pub struct RemoveCollectiveFlip; impl frame_support::traits::OnRuntimeUpgrade for RemoveCollectiveFlip { fn on_runtime_upgrade() -> Weight { diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 213e54c80640..22773c5d3644 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -56,7 +56,7 @@ use sp_core::OpaqueMetadata; use sp_staking::SessionIndex; use frame_support::{ parameter_types, construct_runtime, RuntimeDebug, PalletId, - traits::{KeyOwnerProofSystem, LockIdentifier, Filter}, + traits::{KeyOwnerProofSystem, LockIdentifier, Filter, OnRuntimeUpgrade}, weights::Weight, }; use frame_system::{EnsureRoot, EnsureOneOf}; @@ -1088,11 +1088,22 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPallets, - RemoveCollectiveFlip, + (RemoveCollectiveFlip, MigratePalletVersionToStorageVersion), >; /// The payload being signed in transactions. pub type SignedPayload = generic::SignedPayload; +/// Migrate from `PalletVersion` to the new `StorageVersion` +pub struct MigratePalletVersionToStorageVersion; + +impl OnRuntimeUpgrade for MigratePalletVersionToStorageVersion { + fn on_runtime_upgrade() -> frame_support::weights::Weight { + frame_support::migrations::migrate_from_pallet_version_to_storage_version::( + &RocksDbWeight::get() + ) + } +} + pub struct RemoveCollectiveFlip; impl frame_support::traits::OnRuntimeUpgrade for RemoveCollectiveFlip { fn on_runtime_upgrade() -> Weight { diff --git a/runtime/rococo/src/lib.rs b/runtime/rococo/src/lib.rs index 9f9f601bd1d6..16cabf4d7347 100644 --- a/runtime/rococo/src/lib.rs +++ b/runtime/rococo/src/lib.rs @@ -39,10 +39,9 @@ use runtime_parachains::{ runtime_api_impl::v1 as runtime_api_impl, }; use frame_support::{ - construct_runtime, parameter_types, - traits::{Filter, KeyOwnerProofSystem, Randomness, All, IsInVec}, + PalletId, construct_runtime, parameter_types, + traits::{All, Filter, IsInVec, KeyOwnerProofSystem, OnRuntimeUpgrade, Randomness}, weights::Weight, - PalletId }; use sp_runtime::{ create_runtime_str, generic, impl_opaque_keys, @@ -159,6 +158,17 @@ pub type SignedExtra = ( pallet_transaction_payment::ChargeTransactionPayment, ); +/// Migrate from `PalletVersion` to the new `StorageVersion` +pub struct MigratePalletVersionToStorageVersion; + +impl OnRuntimeUpgrade for MigratePalletVersionToStorageVersion { + fn on_runtime_upgrade() -> frame_support::weights::Weight { + frame_support::migrations::migrate_from_pallet_version_to_storage_version::( + &RocksDbWeight::get() + ) + } +} + /// Unchecked extrinsic type as expected by this runtime. pub type UncheckedExtrinsic = generic::UncheckedExtrinsic; /// Executive: handles dispatch to the various modules. @@ -168,7 +178,7 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPallets, - GrandpaStoragePrefixMigration, + MigratePalletVersionToStorageVersion, >; /// The payload being signed in transactions. pub type SignedPayload = generic::SignedPayload; @@ -267,31 +277,6 @@ construct_runtime! { } } -pub struct GrandpaStoragePrefixMigration; -impl frame_support::traits::OnRuntimeUpgrade for GrandpaStoragePrefixMigration { - fn on_runtime_upgrade() -> frame_support::weights::Weight { - use frame_support::traits::PalletInfo; - let name = ::PalletInfo::name::() - .expect("grandpa is part of pallets in construct_runtime, so it has a name; qed"); - pallet_grandpa::migrations::v3_1::migrate::(name) - } - - #[cfg(feature = "try-runtime")] - fn pre_upgrade() -> Result<(), &'static str> { - use frame_support::traits::PalletInfo; - let name = ::PalletInfo::name::() - .expect("grandpa is part of pallets in construct_runtime, so it has a name; qed"); - pallet_grandpa::migrations::v3_1::pre_migration::(name); - Ok(()) - } - - #[cfg(feature = "try-runtime")] - fn post_upgrade() -> Result<(), &'static str> { - pallet_grandpa::migrations::v3_1::post_migration::(); - Ok(()) - } -} - pub struct BaseFilter; impl Filter for BaseFilter { fn filter(_call: &Call) -> bool { diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 6ef324e59ff3..1cd5f6c5cf4e 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -80,7 +80,7 @@ use sp_core::OpaqueMetadata; use sp_staking::SessionIndex; use frame_support::{ parameter_types, construct_runtime, RuntimeDebug, PalletId, - traits::{KeyOwnerProofSystem, Filter, InstanceFilter, All}, + traits::{KeyOwnerProofSystem, Filter, InstanceFilter, All, OnRuntimeUpgrade}, weights::Weight, }; use pallet_im_online::sr25519::AuthorityId as ImOnlineId; @@ -1116,11 +1116,22 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPallets, - RemoveCollectiveFlip, + (RemoveCollectiveFlip, MigratePalletVersionToStorageVersion), >; /// The payload being signed in transactions. pub type SignedPayload = generic::SignedPayload; +/// Migrate from `PalletVersion` to the new `StorageVersion` +pub struct MigratePalletVersionToStorageVersion; + +impl OnRuntimeUpgrade for MigratePalletVersionToStorageVersion { + fn on_runtime_upgrade() -> frame_support::weights::Weight { + frame_support::migrations::migrate_from_pallet_version_to_storage_version::( + &RocksDbWeight::get() + ) + } +} + pub struct RemoveCollectiveFlip; impl frame_support::traits::OnRuntimeUpgrade for RemoveCollectiveFlip { fn on_runtime_upgrade() -> Weight { From 3859637b1de6fb5eb3f207b849a7b00bd9696c29 Mon Sep 17 00:00:00 2001 From: parity-processbot <> Date: Tue, 27 Jul 2021 21:22:32 +0000 Subject: [PATCH 2/2] update Substrate --- Cargo.lock | 314 ++++++++++++++++++++++++++--------------------------- 1 file changed, 157 insertions(+), 157 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2b6844666a56..a0af42960a12 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1997,7 +1997,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "parity-scale-codec", ] @@ -2015,7 +2015,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-support", "frame-system", @@ -2034,7 +2034,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "Inflector", "chrono", @@ -2058,7 +2058,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-support", "frame-system", @@ -2071,7 +2071,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-support", "frame-system", @@ -2086,7 +2086,7 @@ dependencies = [ [[package]] name = "frame-metadata" version = "14.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "parity-scale-codec", "serde", @@ -2097,7 +2097,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "bitflags", "frame-metadata", @@ -2123,7 +2123,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2135,7 +2135,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 1.0.0", @@ -2147,7 +2147,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "proc-macro2", "quote", @@ -2157,7 +2157,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-metadata", "frame-support", @@ -2178,7 +2178,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-support", "frame-system", @@ -2188,7 +2188,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-support", "impl-trait-for-tuples", @@ -2205,7 +2205,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-support", @@ -2219,7 +2219,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "parity-scale-codec", "sp-api", @@ -2228,7 +2228,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-support", "parity-scale-codec", @@ -4702,7 +4702,7 @@ checksum = "13370dae44474229701bb69b90b4f4dca6404cb0357a2d50d635f1171dc3aa7b" [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-support", "frame-system", @@ -4717,7 +4717,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-support", "frame-system", @@ -4731,7 +4731,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-support", @@ -4754,7 +4754,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-support", @@ -4807,7 +4807,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-support", @@ -4885,7 +4885,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-support", @@ -4901,7 +4901,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-support", @@ -4916,7 +4916,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4937,7 +4937,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-support", @@ -4954,7 +4954,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-support", @@ -4968,7 +4968,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-support", @@ -4990,7 +4990,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5005,7 +5005,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-support", @@ -5024,7 +5024,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-support", @@ -5040,7 +5040,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-support", @@ -5055,7 +5055,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5072,7 +5072,7 @@ dependencies = [ [[package]] name = "pallet-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-support", "frame-system", @@ -5088,7 +5088,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5106,7 +5106,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-support", @@ -5121,7 +5121,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-support", "frame-system", @@ -5134,7 +5134,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-support", "frame-system", @@ -5150,7 +5150,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5172,7 +5172,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-support", @@ -5187,7 +5187,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "enumflags2", "frame-support", @@ -5201,7 +5201,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-support", @@ -5216,7 +5216,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-support", "frame-system", @@ -5236,7 +5236,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-support", @@ -5252,7 +5252,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-support", "frame-system", @@ -5265,7 +5265,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5289,7 +5289,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -5300,7 +5300,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "log", "sp-arithmetic", @@ -5309,7 +5309,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-support", "frame-system", @@ -5322,7 +5322,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-support", @@ -5340,7 +5340,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-support", @@ -5355,7 +5355,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-support", "frame-system", @@ -5371,7 +5371,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5388,7 +5388,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5399,7 +5399,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-support", @@ -5415,7 +5415,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-benchmarking", "frame-support", @@ -5430,7 +5430,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7920,7 +7920,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "env_logger 0.8.4", "hex", @@ -8219,7 +8219,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "log", "sp-core", @@ -8230,7 +8230,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "async-trait", "derive_more", @@ -8259,7 +8259,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "futures 0.3.15", "futures-timer 3.0.2", @@ -8282,7 +8282,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8298,7 +8298,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -8318,7 +8318,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -8329,7 +8329,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "chrono", "fdlimit", @@ -8367,7 +8367,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "derive_more", "fnv", @@ -8401,7 +8401,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "blake2-rfc", "hash-db", @@ -8431,7 +8431,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "async-trait", "parking_lot 0.11.1", @@ -8444,7 +8444,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "async-trait", "derive_more", @@ -8490,7 +8490,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "derive_more", "futures 0.3.15", @@ -8514,7 +8514,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8527,7 +8527,7 @@ dependencies = [ [[package]] name = "sc-consensus-manual-seal" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "assert_matches", "async-trait", @@ -8562,7 +8562,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "async-trait", "futures 0.3.15", @@ -8590,7 +8590,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "sc-client-api", "sp-authorship", @@ -8601,7 +8601,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "derive_more", "lazy_static", @@ -8630,7 +8630,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "derive_more", "parity-scale-codec", @@ -8647,7 +8647,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "log", "parity-scale-codec", @@ -8662,7 +8662,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "cfg-if 1.0.0", "libc", @@ -8682,7 +8682,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "async-trait", "derive_more", @@ -8723,7 +8723,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "derive_more", "finality-grandpa", @@ -8747,7 +8747,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-warp-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "derive_more", "futures 0.3.15", @@ -8768,7 +8768,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "ansi_term 0.12.1", "futures 0.3.15", @@ -8786,7 +8786,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "async-trait", "derive_more", @@ -8806,7 +8806,7 @@ dependencies = [ [[package]] name = "sc-light" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "hash-db", "lazy_static", @@ -8825,7 +8825,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "async-std", "async-trait", @@ -8878,7 +8878,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "futures 0.3.15", "futures-timer 3.0.2", @@ -8895,7 +8895,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "bytes 0.5.6", "fnv", @@ -8923,7 +8923,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "futures 0.3.15", "libp2p", @@ -8936,7 +8936,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -8945,7 +8945,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "futures 0.3.15", "hash-db", @@ -8980,7 +8980,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "derive_more", "futures 0.3.15", @@ -9005,7 +9005,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "futures 0.1.29", "jsonrpc-core", @@ -9023,7 +9023,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "async-trait", "directories", @@ -9090,7 +9090,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "log", "parity-scale-codec", @@ -9105,7 +9105,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -9125,7 +9125,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "chrono", "futures 0.3.15", @@ -9145,7 +9145,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "ansi_term 0.12.1", "atty", @@ -9182,7 +9182,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -9193,7 +9193,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "derive_more", "futures 0.3.15", @@ -9222,7 +9222,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "derive_more", "futures 0.3.15", @@ -9664,7 +9664,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "hash-db", "log", @@ -9681,7 +9681,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "blake2-rfc", "proc-macro-crate 1.0.0", @@ -9693,7 +9693,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "parity-scale-codec", "serde", @@ -9705,7 +9705,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "integer-sqrt", "num-traits", @@ -9719,7 +9719,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "parity-scale-codec", "sp-api", @@ -9731,7 +9731,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "async-trait", "parity-scale-codec", @@ -9743,7 +9743,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "parity-scale-codec", "sp-api", @@ -9755,7 +9755,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "futures 0.3.15", "log", @@ -9773,7 +9773,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "async-trait", "futures 0.3.15", @@ -9800,7 +9800,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "async-trait", "merlin", @@ -9822,7 +9822,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "parity-scale-codec", "sp-arithmetic", @@ -9832,7 +9832,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -9844,7 +9844,7 @@ dependencies = [ [[package]] name = "sp-core" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "base58", "blake2-rfc", @@ -9888,7 +9888,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "kvdb", "parking_lot 0.11.1", @@ -9897,7 +9897,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "proc-macro2", "quote", @@ -9907,7 +9907,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "environmental", "parity-scale-codec", @@ -9918,7 +9918,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "finality-grandpa", "log", @@ -9935,7 +9935,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -9949,7 +9949,7 @@ dependencies = [ [[package]] name = "sp-io" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "futures 0.3.15", "hash-db", @@ -9974,7 +9974,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "lazy_static", "sp-core", @@ -9985,7 +9985,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "async-trait", "derive_more", @@ -10002,7 +10002,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "ruzstd", "zstd", @@ -10011,7 +10011,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "parity-scale-codec", "serde", @@ -10024,7 +10024,7 @@ dependencies = [ [[package]] name = "sp-npos-elections-compact" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -10035,7 +10035,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "sp-api", "sp-core", @@ -10045,7 +10045,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "backtrace", ] @@ -10053,7 +10053,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "rustc-hash", "serde", @@ -10064,7 +10064,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "either", "hash256-std-hasher", @@ -10085,7 +10085,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10102,7 +10102,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "Inflector", "proc-macro-crate 1.0.0", @@ -10114,7 +10114,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "serde", "serde_json", @@ -10123,7 +10123,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "parity-scale-codec", "sp-api", @@ -10136,7 +10136,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "parity-scale-codec", "sp-runtime", @@ -10146,7 +10146,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "hash-db", "log", @@ -10169,12 +10169,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" [[package]] name = "sp-storage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10187,7 +10187,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "log", "sp-core", @@ -10200,7 +10200,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "async-trait", "futures-timer 3.0.2", @@ -10217,7 +10217,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "erased-serde", "log", @@ -10235,7 +10235,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "sp-api", "sp-runtime", @@ -10244,7 +10244,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "async-trait", "log", @@ -10259,7 +10259,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "hash-db", "memory-db", @@ -10273,7 +10273,7 @@ dependencies = [ [[package]] name = "sp-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "futures 0.3.15", "futures-core", @@ -10285,7 +10285,7 @@ dependencies = [ [[package]] name = "sp-version" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10300,7 +10300,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "parity-scale-codec", "proc-macro-crate 1.0.0", @@ -10312,7 +10312,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10497,7 +10497,7 @@ dependencies = [ [[package]] name = "substrate-browser-utils" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "chrono", "console_error_panic_hook", @@ -10523,7 +10523,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "platforms", ] @@ -10531,7 +10531,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.15", @@ -10554,7 +10554,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "async-std", "derive_more", @@ -10568,7 +10568,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "async-trait", "futures 0.1.29", @@ -10597,7 +10597,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "futures 0.3.15", "substrate-test-utils-derive", @@ -10607,7 +10607,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "proc-macro-crate 1.0.0", "quote", @@ -10617,7 +10617,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "ansi_term 0.12.1", "atty", @@ -10779,7 +10779,7 @@ dependencies = [ [[package]] name = "test-runner" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-system", "futures 0.3.15", @@ -11418,7 +11418,7 @@ checksum = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#0ae6aac3b0f8bea55bf91737a179fa01cd50f13f" +source = "git+https://github.com/paritytech/substrate?branch=master#97131a900b954b1f1dd0a826d3889348f1f02b66" dependencies = [ "frame-try-runtime", "log", @@ -11442,9 +11442,9 @@ dependencies = [ [[package]] name = "trybuild" -version = "1.0.42" +version = "1.0.43" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1768998d9a3b179411618e377dbb134c58a88cda284b0aa71c42c40660127d46" +checksum = "c02c413315329fc96167f922b46fd0caa3a43f4697b7a7896b183c7142635832" dependencies = [ "glob", "lazy_static",