From 36502dc6056c0e270f2744d7e320d60e225b3d91 Mon Sep 17 00:00:00 2001 From: Peter Goodspeed-Niklaus Date: Thu, 1 Apr 2021 09:32:05 +0200 Subject: [PATCH 01/14] Companion for Decouple Staking and Election - Part 3: Signed Phase https://github.com/paritytech/substrate/pull/7910 --- runtime/kusama/src/lib.rs | 16 ++++ .../pallet_election_provider_multi_phase.rs | 73 ++++++++++------- runtime/polkadot/src/lib.rs | 16 ++++ .../pallet_election_provider_multi_phase.rs | 81 +++++++++++-------- runtime/westend/src/lib.rs | 20 ++++- .../pallet_election_provider_multi_phase.rs | 75 ++++++++++------- 6 files changed, 187 insertions(+), 94 deletions(-) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 9624c6698392..356dfcfdb6d0 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -310,6 +310,12 @@ parameter_types! { pub const SignedPhase: u32 = 0; pub const UnsignedPhase: u32 = EPOCH_DURATION_IN_BLOCKS / 4; + // signed config + pub const SignedMaxSubmissions: u32 = 0; + pub const SignedRewardBase: Balance = 1 * DOLLARS; + pub const SignedDepositBase: Balance = 1 * DOLLARS; + pub const SignedDepositByte: Balance = 1 * CENTS; + // fallback: run election on-chain. pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = pallet_election_provider_multi_phase::FallbackStrategy::OnChain; @@ -333,6 +339,16 @@ impl pallet_election_provider_multi_phase::Config for Runtime { type Currency = Balances; type SignedPhase = SignedPhase; type UnsignedPhase = UnsignedPhase; + type SignedMaxSubmissions = SignedMaxSubmissions; + type SignedRewardBase = SignedRewardBase; + type SignedDepositBase = SignedDepositBase; + type SignedDepositByte = SignedDepositByte; + type SignedRewardFactor = (); // no score-based reward + type SignedRewardMax = SignedRewardBase; + type SignedDepositWeight = (); + type SignedMaxWeight = Self::MinerMaxWeight; + type SlashHandler = (); // burn slashes + type RewardHandler = (); // nothing to do upon rewards type SolutionImprovementThreshold = SolutionImprovementThreshold; type MinerMaxIterations = MinerMaxIterations; type MinerMaxWeight = OffchainSolutionWeightLimit; // For now use the one from staking. diff --git a/runtime/kusama/src/weights/pallet_election_provider_multi_phase.rs b/runtime/kusama/src/weights/pallet_election_provider_multi_phase.rs index e0aecc26e01e..fcc1d6771f4d 100644 --- a/runtime/kusama/src/weights/pallet_election_provider_multi_phase.rs +++ b/runtime/kusama/src/weights/pallet_election_provider_multi_phase.rs @@ -43,53 +43,68 @@ use sp_std::marker::PhantomData; /// Weight functions for pallet_election_provider_multi_phase. pub struct WeightInfo(PhantomData); impl pallet_election_provider_multi_phase::WeightInfo for WeightInfo { - fn on_initialize_nothing() -> Weight { - (21_275_000 as Weight) - .saturating_add(T::DbWeight::get().reads(7 as Weight)) - } - fn on_initialize_open_signed() -> Weight { - (105_345_000 as Weight) - .saturating_add(T::DbWeight::get().reads(8 as Weight)) - .saturating_add(T::DbWeight::get().writes(4 as Weight)) - } - fn on_initialize_open_unsigned_with_snapshot() -> Weight { - (104_974_000 as Weight) - .saturating_add(T::DbWeight::get().reads(8 as Weight)) - .saturating_add(T::DbWeight::get().writes(4 as Weight)) - } fn on_initialize_open_unsigned_without_snapshot() -> Weight { - (18_915_000 as Weight) + (21_039_000 as Weight) .saturating_add(T::DbWeight::get().reads(1 as Weight)) .saturating_add(T::DbWeight::get().writes(1 as Weight)) } fn elect_queued() -> Weight { - (7_459_479_000 as Weight) + (7_362_949_000 as Weight) .saturating_add(T::DbWeight::get().reads(2 as Weight)) .saturating_add(T::DbWeight::get().writes(6 as Weight)) } - fn submit_unsigned(v: u32, t: u32, a: u32, d: u32, ) -> Weight { + fn submit(c: u32, ) -> Weight { + (84_430_000 as Weight) + // Standard Error: 146_000 + .saturating_add((2_758_000 as Weight).saturating_mul(c as Weight)) + .saturating_add(T::DbWeight::get().reads(3 as Weight)) + .saturating_add(T::DbWeight::get().writes(1 as Weight)) + } + fn submit_unsigned(v: u32, _t: u32, a: u32, d: u32, ) -> Weight { (0 as Weight) - // Standard Error: 20_000 - .saturating_add((4_075_000 as Weight).saturating_mul(v as Weight)) - // Standard Error: 69_000 - .saturating_add((17_000 as Weight).saturating_mul(t as Weight)) - // Standard Error: 20_000 - .saturating_add((13_902_000 as Weight).saturating_mul(a as Weight)) - // Standard Error: 104_000 - .saturating_add((3_805_000 as Weight).saturating_mul(d as Weight)) + // Standard Error: 21_000 + .saturating_add((3_933_000 as Weight).saturating_mul(v as Weight)) + // Standard Error: 21_000 + .saturating_add((13_520_000 as Weight).saturating_mul(a as Weight)) + // Standard Error: 107_000 + .saturating_add((2_880_000 as Weight).saturating_mul(d as Weight)) .saturating_add(T::DbWeight::get().reads(6 as Weight)) .saturating_add(T::DbWeight::get().writes(1 as Weight)) } fn feasibility_check(v: u32, t: u32, a: u32, d: u32, ) -> Weight { (0 as Weight) // Standard Error: 10_000 - .saturating_add((4_208_000 as Weight).saturating_mul(v as Weight)) + .saturating_add((4_069_000 as Weight).saturating_mul(v as Weight)) // Standard Error: 36_000 - .saturating_add((587_000 as Weight).saturating_mul(t as Weight)) + .saturating_add((503_000 as Weight).saturating_mul(t as Weight)) // Standard Error: 10_000 - .saturating_add((10_207_000 as Weight).saturating_mul(a as Weight)) + .saturating_add((10_000_000 as Weight).saturating_mul(a as Weight)) // Standard Error: 54_000 - .saturating_add((3_984_000 as Weight).saturating_mul(d as Weight)) + .saturating_add((3_734_000 as Weight).saturating_mul(d as Weight)) .saturating_add(T::DbWeight::get().reads(3 as Weight)) } + fn on_initialize_nothing() -> Weight { + (24_128_000 as Weight) + .saturating_add(T::DbWeight::get().reads(7 as Weight)) + } + fn on_initialize_open_signed() -> Weight { + (80_951_000 as Weight) + .saturating_add(T::DbWeight::get().reads(7 as Weight)) + .saturating_add(T::DbWeight::get().writes(4 as Weight)) + } + fn on_initialize_open_unsigned_with_snapshot() -> Weight { + (79_888_000 as Weight) + .saturating_add(T::DbWeight::get().reads(7 as Weight)) + .saturating_add(T::DbWeight::get().writes(4 as Weight)) + } + fn finalize_signed_phase_accept_solution() -> Weight { + (47_783_000 as Weight) + .saturating_add(T::DbWeight::get().reads(1 as Weight)) + .saturating_add(T::DbWeight::get().writes(2 as Weight)) + } + fn finalize_signed_phase_reject_solution() -> Weight { + (21_277_000 as Weight) + .saturating_add(T::DbWeight::get().reads(1 as Weight)) + .saturating_add(T::DbWeight::get().writes(1 as Weight)) + } } diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 5db5d37f97e5..ed5a1042301d 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -320,6 +320,12 @@ parameter_types! { pub const SignedPhase: u32 = 0; pub const UnsignedPhase: u32 = EPOCH_DURATION_IN_BLOCKS / 4; + // signed config + pub const SignedMaxSubmissions: u32 = 0; + pub const SignedRewardBase: Balance = 1 * DOLLARS; + pub const SignedDepositBase: Balance = 1 * DOLLARS; + pub const SignedDepositByte: Balance = 1 * CENTS; + // fallback: run election on-chain. pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = pallet_election_provider_multi_phase::FallbackStrategy::OnChain; @@ -343,6 +349,16 @@ impl pallet_election_provider_multi_phase::Config for Runtime { type Currency = Balances; type SignedPhase = SignedPhase; type UnsignedPhase = UnsignedPhase; + type SignedMaxSubmissions = SignedMaxSubmissions; + type SignedRewardBase = SignedRewardBase; + type SignedDepositBase = SignedDepositBase; + type SignedDepositByte = SignedDepositByte; + type SignedRewardFactor = (); // no score-based reward + type SignedRewardMax = SignedRewardBase; + type SignedDepositWeight = (); + type SignedMaxWeight = Self::MinerMaxWeight; + type SlashHandler = (); // burn slashes + type RewardHandler = (); // nothing to do upon rewards type SolutionImprovementThreshold = SolutionImprovementThreshold; type MinerMaxIterations = MinerMaxIterations; type MinerMaxWeight = OffchainSolutionWeightLimit; // For now use the one from staking. diff --git a/runtime/polkadot/src/weights/pallet_election_provider_multi_phase.rs b/runtime/polkadot/src/weights/pallet_election_provider_multi_phase.rs index 84478f39f784..fdfe94f8b69b 100644 --- a/runtime/polkadot/src/weights/pallet_election_provider_multi_phase.rs +++ b/runtime/polkadot/src/weights/pallet_election_provider_multi_phase.rs @@ -43,53 +43,68 @@ use sp_std::marker::PhantomData; /// Weight functions for pallet_election_provider_multi_phase. pub struct WeightInfo(PhantomData); impl pallet_election_provider_multi_phase::WeightInfo for WeightInfo { - fn on_initialize_nothing() -> Weight { - (21_084_000 as Weight) - .saturating_add(T::DbWeight::get().reads(7 as Weight)) - } - fn on_initialize_open_signed() -> Weight { - (103_231_000 as Weight) - .saturating_add(T::DbWeight::get().reads(8 as Weight)) - .saturating_add(T::DbWeight::get().writes(4 as Weight)) - } - fn on_initialize_open_unsigned_with_snapshot() -> Weight { - (101_898_000 as Weight) - .saturating_add(T::DbWeight::get().reads(8 as Weight)) - .saturating_add(T::DbWeight::get().writes(4 as Weight)) - } fn on_initialize_open_unsigned_without_snapshot() -> Weight { - (19_074_000 as Weight) + (21_039_000 as Weight) .saturating_add(T::DbWeight::get().reads(1 as Weight)) .saturating_add(T::DbWeight::get().writes(1 as Weight)) } fn elect_queued() -> Weight { - (7_945_295_000 as Weight) + (7_362_949_000 as Weight) .saturating_add(T::DbWeight::get().reads(2 as Weight)) .saturating_add(T::DbWeight::get().writes(6 as Weight)) } - fn submit_unsigned(v: u32, t: u32, a: u32, d: u32, ) -> Weight { + fn submit(c: u32, ) -> Weight { + (84_430_000 as Weight) + // Standard Error: 146_000 + .saturating_add((2_758_000 as Weight).saturating_mul(c as Weight)) + .saturating_add(T::DbWeight::get().reads(3 as Weight)) + .saturating_add(T::DbWeight::get().writes(1 as Weight)) + } + fn submit_unsigned(v: u32, _t: u32, a: u32, d: u32, ) -> Weight { (0 as Weight) - // Standard Error: 20_000 - .saturating_add((4_102_000 as Weight).saturating_mul(v as Weight)) - // Standard Error: 68_000 - .saturating_add((69_000 as Weight).saturating_mul(t as Weight)) - // Standard Error: 20_000 - .saturating_add((14_129_000 as Weight).saturating_mul(a as Weight)) - // Standard Error: 103_000 - .saturating_add((3_684_000 as Weight).saturating_mul(d as Weight)) + // Standard Error: 21_000 + .saturating_add((3_933_000 as Weight).saturating_mul(v as Weight)) + // Standard Error: 21_000 + .saturating_add((13_520_000 as Weight).saturating_mul(a as Weight)) + // Standard Error: 107_000 + .saturating_add((2_880_000 as Weight).saturating_mul(d as Weight)) .saturating_add(T::DbWeight::get().reads(6 as Weight)) .saturating_add(T::DbWeight::get().writes(1 as Weight)) } fn feasibility_check(v: u32, t: u32, a: u32, d: u32, ) -> Weight { (0 as Weight) - // Standard Error: 11_000 - .saturating_add((4_199_000 as Weight).saturating_mul(v as Weight)) - // Standard Error: 38_000 - .saturating_add((591_000 as Weight).saturating_mul(t as Weight)) - // Standard Error: 11_000 - .saturating_add((10_479_000 as Weight).saturating_mul(a as Weight)) - // Standard Error: 58_000 - .saturating_add((4_108_000 as Weight).saturating_mul(d as Weight)) + // Standard Error: 10_000 + .saturating_add((4_069_000 as Weight).saturating_mul(v as Weight)) + // Standard Error: 36_000 + .saturating_add((503_000 as Weight).saturating_mul(t as Weight)) + // Standard Error: 10_000 + .saturating_add((10_000_000 as Weight).saturating_mul(a as Weight)) + // Standard Error: 54_000 + .saturating_add((3_734_000 as Weight).saturating_mul(d as Weight)) .saturating_add(T::DbWeight::get().reads(3 as Weight)) } + fn on_initialize_nothing() -> Weight { + (24_128_000 as Weight) + .saturating_add(T::DbWeight::get().reads(7 as Weight)) + } + fn on_initialize_open_signed() -> Weight { + (80_951_000 as Weight) + .saturating_add(T::DbWeight::get().reads(7 as Weight)) + .saturating_add(T::DbWeight::get().writes(4 as Weight)) + } + fn on_initialize_open_unsigned_with_snapshot() -> Weight { + (79_888_000 as Weight) + .saturating_add(T::DbWeight::get().reads(7 as Weight)) + .saturating_add(T::DbWeight::get().writes(4 as Weight)) + } + fn finalize_signed_phase_accept_solution() -> Weight { + (47_783_000 as Weight) + .saturating_add(T::DbWeight::get().reads(1 as Weight)) + .saturating_add(T::DbWeight::get().writes(2 as Weight)) + } + fn finalize_signed_phase_reject_solution() -> Weight { + (21_277_000 as Weight) + .saturating_add(T::DbWeight::get().reads(1 as Weight)) + .saturating_add(T::DbWeight::get().writes(1 as Weight)) + } } diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 9709366306d5..a4e75d9e4d43 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -297,10 +297,16 @@ impl pallet_session::historical::Config for Runtime { } parameter_types! { - // no signed phase for now, just unsigned. - pub const SignedPhase: u32 = 0; + // phase durations. 1/4 of the last session for each. + pub const SignedPhase: u32 = EPOCH_DURATION_IN_BLOCKS / 4; pub const UnsignedPhase: u32 = EPOCH_DURATION_IN_BLOCKS / 4; + // signed config + pub const SignedMaxSubmissions: u32 = 128; + pub const SignedRewardBase: Balance = 1 * DOLLARS; + pub const SignedDepositBase: Balance = 1 * DOLLARS; + pub const SignedDepositByte: Balance = 1 * CENTS; + // fallback: run election on-chain. pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = pallet_election_provider_multi_phase::FallbackStrategy::OnChain; @@ -325,6 +331,16 @@ impl pallet_election_provider_multi_phase::Config for Runtime { type Currency = Balances; type SignedPhase = SignedPhase; type UnsignedPhase = UnsignedPhase; + type SignedMaxSubmissions = SignedMaxSubmissions; + type SignedRewardBase = SignedRewardBase; + type SignedDepositBase = SignedDepositBase; + type SignedDepositByte = SignedDepositByte; + type SignedRewardFactor = (); // no score-based reward + type SignedRewardMax = SignedRewardBase; + type SignedDepositWeight = (); + type SignedMaxWeight = Self::MinerMaxWeight; + type SlashHandler = (); // burn slashes + type RewardHandler = (); // nothing to do upon rewards type SolutionImprovementThreshold = SolutionImprovementThreshold; type MinerMaxIterations = MinerMaxIterations; type MinerMaxWeight = OffchainSolutionWeightLimit; // For now use the one from staking. diff --git a/runtime/westend/src/weights/pallet_election_provider_multi_phase.rs b/runtime/westend/src/weights/pallet_election_provider_multi_phase.rs index a37e10da611b..9d55b80b2595 100644 --- a/runtime/westend/src/weights/pallet_election_provider_multi_phase.rs +++ b/runtime/westend/src/weights/pallet_election_provider_multi_phase.rs @@ -43,53 +43,68 @@ use sp_std::marker::PhantomData; /// Weight functions for pallet_election_provider_multi_phase. pub struct WeightInfo(PhantomData); impl pallet_election_provider_multi_phase::WeightInfo for WeightInfo { - fn on_initialize_nothing() -> Weight { - (21_348_000 as Weight) - .saturating_add(T::DbWeight::get().reads(7 as Weight)) - } - fn on_initialize_open_signed() -> Weight { - (106_372_000 as Weight) - .saturating_add(T::DbWeight::get().reads(8 as Weight)) - .saturating_add(T::DbWeight::get().writes(4 as Weight)) - } - fn on_initialize_open_unsigned_with_snapshot() -> Weight { - (105_981_000 as Weight) - .saturating_add(T::DbWeight::get().reads(8 as Weight)) - .saturating_add(T::DbWeight::get().writes(4 as Weight)) - } fn on_initialize_open_unsigned_without_snapshot() -> Weight { - (18_168_000 as Weight) + (21_039_000 as Weight) .saturating_add(T::DbWeight::get().reads(1 as Weight)) .saturating_add(T::DbWeight::get().writes(1 as Weight)) } fn elect_queued() -> Weight { - (7_948_966_000 as Weight) + (7_362_949_000 as Weight) .saturating_add(T::DbWeight::get().reads(2 as Weight)) .saturating_add(T::DbWeight::get().writes(6 as Weight)) } - fn submit_unsigned(v: u32, t: u32, a: u32, d: u32, ) -> Weight { + fn submit(c: u32, ) -> Weight { + (84_430_000 as Weight) + // Standard Error: 146_000 + .saturating_add((2_758_000 as Weight).saturating_mul(c as Weight)) + .saturating_add(T::DbWeight::get().reads(3 as Weight)) + .saturating_add(T::DbWeight::get().writes(1 as Weight)) + } + fn submit_unsigned(v: u32, _t: u32, a: u32, d: u32, ) -> Weight { (0 as Weight) // Standard Error: 21_000 - .saturating_add((4_060_000 as Weight).saturating_mul(v as Weight)) - // Standard Error: 70_000 - .saturating_add((19_000 as Weight).saturating_mul(t as Weight)) + .saturating_add((3_933_000 as Weight).saturating_mul(v as Weight)) // Standard Error: 21_000 - .saturating_add((14_215_000 as Weight).saturating_mul(a as Weight)) - // Standard Error: 106_000 - .saturating_add((3_698_000 as Weight).saturating_mul(d as Weight)) + .saturating_add((13_520_000 as Weight).saturating_mul(a as Weight)) + // Standard Error: 107_000 + .saturating_add((2_880_000 as Weight).saturating_mul(d as Weight)) .saturating_add(T::DbWeight::get().reads(6 as Weight)) .saturating_add(T::DbWeight::get().writes(1 as Weight)) } fn feasibility_check(v: u32, t: u32, a: u32, d: u32, ) -> Weight { (0 as Weight) - // Standard Error: 11_000 - .saturating_add((4_190_000 as Weight).saturating_mul(v as Weight)) + // Standard Error: 10_000 + .saturating_add((4_069_000 as Weight).saturating_mul(v as Weight)) // Standard Error: 36_000 - .saturating_add((572_000 as Weight).saturating_mul(t as Weight)) - // Standard Error: 11_000 - .saturating_add((10_490_000 as Weight).saturating_mul(a as Weight)) - // Standard Error: 55_000 - .saturating_add((3_740_000 as Weight).saturating_mul(d as Weight)) + .saturating_add((503_000 as Weight).saturating_mul(t as Weight)) + // Standard Error: 10_000 + .saturating_add((10_000_000 as Weight).saturating_mul(a as Weight)) + // Standard Error: 54_000 + .saturating_add((3_734_000 as Weight).saturating_mul(d as Weight)) .saturating_add(T::DbWeight::get().reads(3 as Weight)) } + fn on_initialize_nothing() -> Weight { + (24_128_000 as Weight) + .saturating_add(T::DbWeight::get().reads(7 as Weight)) + } + fn on_initialize_open_signed() -> Weight { + (80_951_000 as Weight) + .saturating_add(T::DbWeight::get().reads(7 as Weight)) + .saturating_add(T::DbWeight::get().writes(4 as Weight)) + } + fn on_initialize_open_unsigned_with_snapshot() -> Weight { + (79_888_000 as Weight) + .saturating_add(T::DbWeight::get().reads(7 as Weight)) + .saturating_add(T::DbWeight::get().writes(4 as Weight)) + } + fn finalize_signed_phase_accept_solution() -> Weight { + (47_783_000 as Weight) + .saturating_add(T::DbWeight::get().reads(1 as Weight)) + .saturating_add(T::DbWeight::get().writes(2 as Weight)) + } + fn finalize_signed_phase_reject_solution() -> Weight { + (21_277_000 as Weight) + .saturating_add(T::DbWeight::get().reads(1 as Weight)) + .saturating_add(T::DbWeight::get().writes(1 as Weight)) + } } From 0fc8c64e378a9fcbd00d84ad6fb369951ea27024 Mon Sep 17 00:00:00 2001 From: Peter Goodspeed-Niklaus Date: Mon, 31 May 2021 13:27:44 +0200 Subject: [PATCH 02/14] remove some config types --- runtime/kusama/src/lib.rs | 2 -- runtime/polkadot/src/lib.rs | 2 -- runtime/westend/src/lib.rs | 2 -- 3 files changed, 6 deletions(-) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index d5f53c0fe6a7..30b1ca039ddd 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -376,8 +376,6 @@ impl pallet_election_provider_multi_phase::Config for Runtime { type SignedRewardBase = SignedRewardBase; type SignedDepositBase = SignedDepositBase; type SignedDepositByte = SignedDepositByte; - type SignedRewardFactor = (); // no score-based reward - type SignedRewardMax = SignedRewardBase; type SignedDepositWeight = (); type SignedMaxWeight = Self::MinerMaxWeight; type SlashHandler = (); // burn slashes diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index ee9bc492f593..704fd8814d31 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -358,8 +358,6 @@ impl pallet_election_provider_multi_phase::Config for Runtime { type SignedRewardBase = SignedRewardBase; type SignedDepositBase = SignedDepositBase; type SignedDepositByte = SignedDepositByte; - type SignedRewardFactor = (); // no score-based reward - type SignedRewardMax = SignedRewardBase; type SignedDepositWeight = (); type SignedMaxWeight = Self::MinerMaxWeight; type SlashHandler = (); // burn slashes diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index c98e98f9c9a5..e68bb3061e78 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -368,8 +368,6 @@ impl pallet_election_provider_multi_phase::Config for Runtime { type SignedRewardBase = SignedRewardBase; type SignedDepositBase = SignedDepositBase; type SignedDepositByte = SignedDepositByte; - type SignedRewardFactor = (); // no score-based reward - type SignedRewardMax = SignedRewardBase; type SignedDepositWeight = (); type SignedMaxWeight = Self::MinerMaxWeight; type SlashHandler = (); // burn slashes From 3c51221738a715fe5dddd0c40f5f1ef7162174db Mon Sep 17 00:00:00 2001 From: Peter Goodspeed-Niklaus Date: Wed, 23 Jun 2021 13:36:16 +0200 Subject: [PATCH 03/14] allow up to 5 signed submissions on polkadot and kusama --- runtime/kusama/src/lib.rs | 2 +- runtime/polkadot/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index e53849dc1175..ae0cd9a72de8 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -353,7 +353,7 @@ parameter_types! { pub const UnsignedPhase: u32 = EPOCH_DURATION_IN_SLOTS / 4; // signed config - pub const SignedMaxSubmissions: u32 = 0; + pub const SignedMaxSubmissions: u32 = 5; pub const SignedRewardBase: Balance = 100 * CENTS; pub const SignedDepositBase: Balance = 100 * CENTS; pub const SignedDepositByte: Balance = 1 * CENTS; diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 417e978c1615..00f63bbb293e 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -333,7 +333,7 @@ parameter_types! { pub const UnsignedPhase: u32 = EPOCH_DURATION_IN_SLOTS / 4; // signed config - pub const SignedMaxSubmissions: u32 = 0; + pub const SignedMaxSubmissions: u32 = 5; pub const SignedRewardBase: Balance = 1 * DOLLARS; pub const SignedDepositBase: Balance = 1 * DOLLARS; pub const SignedDepositByte: Balance = 1 * CENTS; From 9538b7eb89620f1f46d5c090eab87d725451bfda Mon Sep 17 00:00:00 2001 From: Peter Goodspeed-Niklaus Date: Wed, 23 Jun 2021 13:39:15 +0200 Subject: [PATCH 04/14] signed phase is equal induration to unsigned phase --- runtime/kusama/src/lib.rs | 4 ++-- runtime/polkadot/src/lib.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index ae0cd9a72de8..a439ee92918d 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -348,8 +348,8 @@ impl pallet_session::historical::Config for Runtime { } parameter_types! { - // no signed phase for now, just unsigned. - pub const SignedPhase: u32 = 0; + // phase durations. 1/4 of the last session for each. + pub const SignedPhase: u32 = EPOCH_DURATION_IN_SLOTS / 4; pub const UnsignedPhase: u32 = EPOCH_DURATION_IN_SLOTS / 4; // signed config diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 00f63bbb293e..da2587f121a5 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -328,8 +328,8 @@ impl pallet_session::historical::Config for Runtime { } parameter_types! { - // no signed phase for now, just unsigned. - pub const SignedPhase: u32 = 0; + // phase durations. 1/4 of the last session for each. + pub const SignedPhase: u32 = EPOCH_DURATION_IN_SLOTS / 4; pub const UnsignedPhase: u32 = EPOCH_DURATION_IN_SLOTS / 4; // signed config From 3da0659a94ae46b3aba8d9a81c036f1b024f02c3 Mon Sep 17 00:00:00 2001 From: Peter Goodspeed-Niklaus Date: Wed, 23 Jun 2021 14:52:01 +0200 Subject: [PATCH 05/14] use chain defaults for base and per-byte deposits; >= 16 SignedMaxSubmissions --- runtime/kusama/src/lib.rs | 8 ++++---- runtime/polkadot/src/lib.rs | 8 ++++---- runtime/westend/src/lib.rs | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index a439ee92918d..db93360d4aa6 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -353,12 +353,12 @@ parameter_types! { pub const UnsignedPhase: u32 = EPOCH_DURATION_IN_SLOTS / 4; // signed config - pub const SignedMaxSubmissions: u32 = 5; + pub const SignedMaxSubmissions: u32 = 16; pub const SignedRewardBase: Balance = 100 * CENTS; - pub const SignedDepositBase: Balance = 100 * CENTS; - pub const SignedDepositByte: Balance = 1 * CENTS; + pub const SignedDepositBase: Balance = deposit(1, 0); + pub const SignedDepositByte: Balance = deposit(0, 1); - // fallback: run election on-chain. + // fallback: emergency phase. pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = pallet_election_provider_multi_phase::FallbackStrategy::Nothing; pub SolutionImprovementThreshold: Perbill = Perbill::from_rational(5u32, 10_000); diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index da2587f121a5..d3f602fdc804 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -333,12 +333,12 @@ parameter_types! { pub const UnsignedPhase: u32 = EPOCH_DURATION_IN_SLOTS / 4; // signed config - pub const SignedMaxSubmissions: u32 = 5; + pub const SignedMaxSubmissions: u32 = 16; pub const SignedRewardBase: Balance = 1 * DOLLARS; - pub const SignedDepositBase: Balance = 1 * DOLLARS; - pub const SignedDepositByte: Balance = 1 * CENTS; + pub const SignedDepositBase: Balance = deposit(1, 0); + pub const SignedDepositByte: Balance = deposit(0, 1); - // fallback: run election on-chain. + // fallback: emergency phase. pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = pallet_election_provider_multi_phase::FallbackStrategy::Nothing; pub SolutionImprovementThreshold: Perbill = Perbill::from_rational(5u32, 10_000); diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index d7af1e2e6cc7..408c42552006 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -340,10 +340,10 @@ parameter_types! { // signed config pub const SignedMaxSubmissions: u32 = 128; pub const SignedRewardBase: Balance = 100 * CENTS; - pub const SignedDepositBase: Balance = 100 * CENTS; - pub const SignedDepositByte: Balance = 1 * CENTS; + pub const SignedDepositBase: Balance = deposit(1, 0); + pub const SignedDepositByte: Balance = deposit(0, 1); - // fallback: run election on-chain. + // fallback: emergency phase. pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = pallet_election_provider_multi_phase::FallbackStrategy::Nothing; From 0f380ae8357c7edef3a1b6a958919f45eb511992 Mon Sep 17 00:00:00 2001 From: Peter Goodspeed-Niklaus Date: Wed, 23 Jun 2021 15:00:07 +0200 Subject: [PATCH 06/14] use a small but non-trivial solution reward --- runtime/kusama/src/lib.rs | 2 +- runtime/polkadot/src/lib.rs | 2 +- runtime/westend/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index db93360d4aa6..a7a1c50120b8 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -354,9 +354,9 @@ parameter_types! { // signed config pub const SignedMaxSubmissions: u32 = 16; - pub const SignedRewardBase: Balance = 100 * CENTS; pub const SignedDepositBase: Balance = deposit(1, 0); pub const SignedDepositByte: Balance = deposit(0, 1); + pub const SignedRewardBase: Balance = deposit(1, 0) / 4; // fallback: emergency phase. pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index d3f602fdc804..a841b046abc2 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -334,9 +334,9 @@ parameter_types! { // signed config pub const SignedMaxSubmissions: u32 = 16; - pub const SignedRewardBase: Balance = 1 * DOLLARS; pub const SignedDepositBase: Balance = deposit(1, 0); pub const SignedDepositByte: Balance = deposit(0, 1); + pub const SignedRewardBase: Balance = deposit(1, 0) / 4; // fallback: emergency phase. pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 408c42552006..a080d64cd41a 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -339,9 +339,9 @@ parameter_types! { // signed config pub const SignedMaxSubmissions: u32 = 128; - pub const SignedRewardBase: Balance = 100 * CENTS; pub const SignedDepositBase: Balance = deposit(1, 0); pub const SignedDepositByte: Balance = deposit(0, 1); + pub const SignedRewardBase: Balance = deposit(1, 0) / 4; // fallback: emergency phase. pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = From fd9e8c6042b6efc6722ce4ed4e7cf678ad6ce4b5 Mon Sep 17 00:00:00 2001 From: Peter Goodspeed-Niklaus Date: Wed, 23 Jun 2021 15:43:46 +0200 Subject: [PATCH 07/14] reduce signed deposit per byte fee --- runtime/kusama/src/lib.rs | 4 +++- runtime/polkadot/src/lib.rs | 4 +++- runtime/westend/src/lib.rs | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index a7a1c50120b8..83fc46aa7b56 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -355,7 +355,9 @@ parameter_types! { // signed config pub const SignedMaxSubmissions: u32 = 16; pub const SignedDepositBase: Balance = deposit(1, 0); - pub const SignedDepositByte: Balance = deposit(0, 1); + // A typical solution occupies 20kb. This formula is currently adjusted such that a typical + // solution will spend approximately equal amounts on the base and per-byte deposits. + pub const SignedDepositByte: Balance = deposit(1, 0) / (20 * 1024 * 1024); pub const SignedRewardBase: Balance = deposit(1, 0) / 4; // fallback: emergency phase. diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index a841b046abc2..851dab73b2ff 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -335,7 +335,9 @@ parameter_types! { // signed config pub const SignedMaxSubmissions: u32 = 16; pub const SignedDepositBase: Balance = deposit(1, 0); - pub const SignedDepositByte: Balance = deposit(0, 1); + // A typical solution occupies 20kb. This formula is currently adjusted such that a typical + // solution will spend approximately equal amounts on the base and per-byte deposits. + pub const SignedDepositByte: Balance = deposit(1, 0) / (20 * 1024 * 1024); pub const SignedRewardBase: Balance = deposit(1, 0) / 4; // fallback: emergency phase. diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index a080d64cd41a..5c1613457556 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -340,7 +340,9 @@ parameter_types! { // signed config pub const SignedMaxSubmissions: u32 = 128; pub const SignedDepositBase: Balance = deposit(1, 0); - pub const SignedDepositByte: Balance = deposit(0, 1); + // A typical solution occupies 20kb. This formula is currently adjusted such that a typical + // solution will spend approximately equal amounts on the base and per-byte deposits. + pub const SignedDepositByte: Balance = deposit(1, 0) / (20 * 1024 * 1024); pub const SignedRewardBase: Balance = deposit(1, 0) / 4; // fallback: emergency phase. From a0372e3bacc6bb0e136d05ee90fd64ebd1c0bbd1 Mon Sep 17 00:00:00 2001 From: Peter Goodspeed-Niklaus Date: Wed, 23 Jun 2021 16:00:49 +0200 Subject: [PATCH 08/14] reduce signed reward, adjust polkadot expected soln size --- runtime/kusama/src/lib.rs | 2 +- runtime/polkadot/src/lib.rs | 8 ++++---- runtime/westend/src/lib.rs | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 83fc46aa7b56..2ae4c00e2135 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -358,7 +358,7 @@ parameter_types! { // A typical solution occupies 20kb. This formula is currently adjusted such that a typical // solution will spend approximately equal amounts on the base and per-byte deposits. pub const SignedDepositByte: Balance = deposit(1, 0) / (20 * 1024 * 1024); - pub const SignedRewardBase: Balance = deposit(1, 0) / 4; + pub const SignedRewardBase: Balance = 1 * CENTS; // fallback: emergency phase. pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 851dab73b2ff..89db617b52f0 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -335,10 +335,10 @@ parameter_types! { // signed config pub const SignedMaxSubmissions: u32 = 16; pub const SignedDepositBase: Balance = deposit(1, 0); - // A typical solution occupies 20kb. This formula is currently adjusted such that a typical - // solution will spend approximately equal amounts on the base and per-byte deposits. - pub const SignedDepositByte: Balance = deposit(1, 0) / (20 * 1024 * 1024); - pub const SignedRewardBase: Balance = deposit(1, 0) / 4; + // A typical solution currently occupies 120kb. This formula is currently adjusted such that a + // typical solution will spend approximately equal amounts on the base and per-byte deposits. + pub const SignedDepositByte: Balance = deposit(1, 0) / (120 * 1024 * 1024); + pub const SignedRewardBase: Balance = 1 * CENTS; // fallback: emergency phase. pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 5c1613457556..100df4b3d417 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -343,7 +343,7 @@ parameter_types! { // A typical solution occupies 20kb. This formula is currently adjusted such that a typical // solution will spend approximately equal amounts on the base and per-byte deposits. pub const SignedDepositByte: Balance = deposit(1, 0) / (20 * 1024 * 1024); - pub const SignedRewardBase: Balance = deposit(1, 0) / 4; + pub const SignedRewardBase: Balance = 1 * CENTS; // fallback: emergency phase. pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = From e1f3a06bec80b5c038e3a0a442d5c7560aada82a Mon Sep 17 00:00:00 2001 From: Peter Goodspeed-Niklaus Date: Wed, 23 Jun 2021 16:31:29 +0200 Subject: [PATCH 09/14] copy submit benchmark from substrate --- .../src/weights/pallet_election_provider_multi_phase.rs | 9 ++++++--- .../src/weights/pallet_election_provider_multi_phase.rs | 9 ++++++--- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/runtime/polkadot/src/weights/pallet_election_provider_multi_phase.rs b/runtime/polkadot/src/weights/pallet_election_provider_multi_phase.rs index 4136b59da7a2..235250c5873e 100644 --- a/runtime/polkadot/src/weights/pallet_election_provider_multi_phase.rs +++ b/runtime/polkadot/src/weights/pallet_election_provider_multi_phase.rs @@ -102,8 +102,11 @@ impl pallet_election_provider_multi_phase::WeightInfo f .saturating_add(T::DbWeight::get().reads(1 as Weight)) .saturating_add(T::DbWeight::get().writes(1 as Weight)) } - fn submit(_: u32) -> Weight { - // needs a real benchmarking to get a real value here - 0 + fn submit(c: u32) -> Weight { + (78_972_000 as Weight) + // Standard Error: 16_000 + .saturating_add((308_000 as Weight).saturating_mul(c as Weight)) + .saturating_add(T::DbWeight::get().reads(4 as Weight)) + .saturating_add(T::DbWeight::get().writes(3 as Weight)) } } diff --git a/runtime/westend/src/weights/pallet_election_provider_multi_phase.rs b/runtime/westend/src/weights/pallet_election_provider_multi_phase.rs index 7284d2049ff2..7b0bb3ec7329 100644 --- a/runtime/westend/src/weights/pallet_election_provider_multi_phase.rs +++ b/runtime/westend/src/weights/pallet_election_provider_multi_phase.rs @@ -102,8 +102,11 @@ impl pallet_election_provider_multi_phase::WeightInfo f .saturating_add(T::DbWeight::get().reads(1 as Weight)) .saturating_add(T::DbWeight::get().writes(1 as Weight)) } - fn submit(_: u32) -> Weight { - // need a real benchmark to get a value here - 0 + fn submit(c: u32) -> Weight { + (78_972_000 as Weight) + // Standard Error: 16_000 + .saturating_add((308_000 as Weight).saturating_mul(c as Weight)) + .saturating_add(T::DbWeight::get().reads(4 as Weight)) + .saturating_add(T::DbWeight::get().writes(3 as Weight)) } } From b19f7e1dcaae9a042615c2698d569b9809571704 Mon Sep 17 00:00:00 2001 From: Peter Goodspeed-Niklaus Date: Wed, 23 Jun 2021 17:16:22 +0200 Subject: [PATCH 10/14] demo calculating an appropriate fee for the signed reward Unfortunately, this doesn't work: it needs to be a constant function, and AFAIK there's no way to make a trait method constant. --- Cargo.lock | 1 + runtime/common/Cargo.toml | 3 +- runtime/common/src/elections.rs | 61 +++++++++++++++++++++++++++++++++ runtime/common/src/lib.rs | 24 ++----------- runtime/westend/src/lib.rs | 7 +++- 5 files changed, 73 insertions(+), 23 deletions(-) create mode 100644 runtime/common/src/elections.rs diff --git a/Cargo.lock b/Cargo.lock index eeaac3b736a4..b8a112d952e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6599,6 +6599,7 @@ dependencies = [ "pallet-babe", "pallet-balances", "pallet-beefy", + "pallet-election-provider-multi-phase", "pallet-mmr", "pallet-offences", "pallet-session", diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index 27a8b93f4898..c892871a798d 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -35,7 +35,7 @@ pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "ma pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } - +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } pallet-beefy = { git = "https://github.com/paritytech/grandpa-bridge-gadget", branch = "master", default-features = false } pallet-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } @@ -91,6 +91,7 @@ std = [ "pallet-vesting/std", "pallet-transaction-payment/std", "pallet-treasury/std", + "pallet-election-provider-multi-phase/std", "slot-range-helper/std", "sp-runtime/std", "sp-session/std", diff --git a/runtime/common/src/elections.rs b/runtime/common/src/elections.rs new file mode 100644 index 000000000000..35f73fc65d98 --- /dev/null +++ b/runtime/common/src/elections.rs @@ -0,0 +1,61 @@ +// Copyright 2021 Parity Technologies (UK) Ltd. +// This file is part of Polkadot. + +// Polkadot is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// Polkadot is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with Polkadot. If not, see . + +//! Code for elections. + +use frame_support::{ + parameter_types, + traits::Get, + weights::{DispatchClass, Weight, WeightToFeePolynomial}, +}; +use sp_runtime::Perbill; +use super::{BlockExecutionWeight, BlockLength, BlockWeights}; + +parameter_types! { + /// A limit for off-chain phragmen unsigned solution submission. + /// + /// We want to keep it as high as possible, but can't risk having it reject, + /// so we always subtract the base block execution weight. + pub OffchainSolutionWeightLimit: Weight = BlockWeights::get() + .get(DispatchClass::Normal) + .max_extrinsic + .expect("Normal extrinsics have weight limit configured by default; qed") + .saturating_sub(BlockExecutionWeight::get()); + + /// A limit for off-chain phragmen unsigned solution length. + /// + /// We allow up to 90% of the block's size to be consumed by the solution. + pub OffchainSolutionLengthLimit: u32 = Perbill::from_rational(90_u32, 100) * + *BlockLength::get() + .max + .get(DispatchClass::Normal); +} + +/// Compute the expected fee for submitting an election solution. +/// +/// This is `ratio` multiplied by the fee for the expected submission weight according to the +/// weight info. +/// +/// Assumes that the signed submission queue is full. +pub fn fee_for_weight(ratio: Perbill) -> WeightToFee::Balance +where + T: pallet_election_provider_multi_phase::Config, + WeightToFee: WeightToFeePolynomial, + WeightInfo: pallet_election_provider_multi_phase::WeightInfo, +{ + let expected_weight = WeightInfo::submit(T::SignedMaxSubmissions::get()); + ratio * WeightToFee::calc(&expected_weight) +} diff --git a/runtime/common/src/lib.rs b/runtime/common/src/lib.rs index 406b3fc17c56..e96034c2ccda 100644 --- a/runtime/common/src/lib.rs +++ b/runtime/common/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2019-2020 Parity Technologies (UK) Ltd. +// Copyright 2019-2021 Parity Technologies (UK) Ltd. // This file is part of Polkadot. // Polkadot is free software: you can redistribute it and/or modify @@ -30,6 +30,7 @@ pub mod paras_registrar; pub mod slot_range; pub mod traits; pub mod xcm_sender; +pub mod elections; #[cfg(test)] mod mock; @@ -54,6 +55,7 @@ pub use pallet_staking::StakerStatus; pub use sp_runtime::BuildStorage; pub use pallet_timestamp::Call as TimestampCall; pub use pallet_balances::Call as BalancesCall; +pub use elections::{OffchainSolutionLengthLimit, OffchainSolutionWeightLimit}; /// Implementations of some helper traits passed into runtime modules as associated types. pub use impls::ToAuthor; @@ -108,26 +110,6 @@ parameter_types! { .build_or_panic(); } -parameter_types! { - /// A limit for off-chain phragmen unsigned solution submission. - /// - /// We want to keep it as high as possible, but can't risk having it reject, - /// so we always subtract the base block execution weight. - pub OffchainSolutionWeightLimit: Weight = BlockWeights::get() - .get(DispatchClass::Normal) - .max_extrinsic - .expect("Normal extrinsics have weight limit configured by default; qed") - .saturating_sub(BlockExecutionWeight::get()); - - /// A limit for off-chain phragmen unsigned solution length. - /// - /// We allow up to 90% of the block's size to be consumed by the solution. - pub OffchainSolutionLengthLimit: u32 = Perbill::from_rational(90_u32, 100) * - *BlockLength::get() - .max - .get(DispatchClass::Normal); -} - /// Parameterized slow adjusting fee updated based on /// https://w3f-research.readthedocs.io/en/latest/polkadot/Token%20Economics.html#-2.-slow-adjusting-mechanism pub type SlowAdjustingFeeUpdate = TargetedFeeAdjustment< diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 100df4b3d417..367313df9d04 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -36,6 +36,7 @@ use runtime_common::{ impls::ToAuthor, BlockHashCount, BlockWeights, BlockLength, RocksDbWeight, OffchainSolutionWeightLimit, OffchainSolutionLengthLimit, + elections::fee_for_weight, }; use runtime_parachains::origin as parachains_origin; @@ -343,7 +344,11 @@ parameter_types! { // A typical solution occupies 20kb. This formula is currently adjusted such that a typical // solution will spend approximately equal amounts on the base and per-byte deposits. pub const SignedDepositByte: Balance = deposit(1, 0) / (20 * 1024 * 1024); - pub const SignedRewardBase: Balance = 1 * CENTS; + pub const SignedRewardBase: Balance = fee_for_weight::< + Runtime, + crate::constants::fee::WeightToFee, + crate::weights::pallet_election_provider_multi_phase::WeightInfo, + >(Perbill::from_perthousand(3500)); // fallback: emergency phase. pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = From ff228bc7342d21b8e2b07fb10eca4fae29178041 Mon Sep 17 00:00:00 2001 From: Peter Goodspeed-Niklaus Date: Thu, 24 Jun 2021 08:54:49 +0200 Subject: [PATCH 11/14] SignedRewardBase is 1.5x the fee to submit a signed solution --- runtime/common/src/elections.rs | 6 +++--- runtime/kusama/src/lib.rs | 9 +++++++-- runtime/polkadot/src/lib.rs | 7 ++++++- runtime/westend/src/lib.rs | 6 +++--- 4 files changed, 19 insertions(+), 9 deletions(-) diff --git a/runtime/common/src/elections.rs b/runtime/common/src/elections.rs index 35f73fc65d98..3b7086fcfd5d 100644 --- a/runtime/common/src/elections.rs +++ b/runtime/common/src/elections.rs @@ -46,16 +46,16 @@ parameter_types! { /// Compute the expected fee for submitting an election solution. /// -/// This is `ratio` multiplied by the fee for the expected submission weight according to the +/// This is `multiplier` multiplied by the fee for the expected submission weight according to the /// weight info. /// /// Assumes that the signed submission queue is full. -pub fn fee_for_weight(ratio: Perbill) -> WeightToFee::Balance +pub fn fee_for_submit_call(multiplier: Perbill) -> WeightToFee::Balance where T: pallet_election_provider_multi_phase::Config, WeightToFee: WeightToFeePolynomial, WeightInfo: pallet_election_provider_multi_phase::WeightInfo, { let expected_weight = WeightInfo::submit(T::SignedMaxSubmissions::get()); - ratio * WeightToFee::calc(&expected_weight) + multiplier * WeightToFee::calc(&expected_weight) } diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 2ae4c00e2135..4bb0c1249447 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -34,7 +34,8 @@ use primitives::v1::{ use runtime_common::{ claims, paras_registrar, xcm_sender, slots, auctions, crowdloan, SlowAdjustingFeeUpdate, CurrencyToVote, impls::DealWithFees, - BlockHashCount, RocksDbWeight, BlockWeights, BlockLength, OffchainSolutionWeightLimit, OffchainSolutionLengthLimit, + BlockHashCount, RocksDbWeight, BlockWeights, BlockLength, + OffchainSolutionWeightLimit, OffchainSolutionLengthLimit, elections::fee_for_submit_call, ToAuthor, }; @@ -358,7 +359,11 @@ parameter_types! { // A typical solution occupies 20kb. This formula is currently adjusted such that a typical // solution will spend approximately equal amounts on the base and per-byte deposits. pub const SignedDepositByte: Balance = deposit(1, 0) / (20 * 1024 * 1024); - pub const SignedRewardBase: Balance = 1 * CENTS; + pub SignedRewardBase: Balance = fee_for_submit_call::< + Runtime, + crate::constants::fee::WeightToFee, + crate::weights::pallet_election_provider_multi_phase::WeightInfo, + >(Perbill::from_perthousand(1500)); // fallback: emergency phase. pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 89db617b52f0..1f2f89aa0455 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -26,6 +26,7 @@ use runtime_common::{ impls::DealWithFees, BlockHashCount, RocksDbWeight, BlockWeights, BlockLength, OffchainSolutionWeightLimit, OffchainSolutionLengthLimit, + elections::fee_for_submit_call, ParachainSessionKeyPlaceholder, AssignmentSessionKeyPlaceholder, }; @@ -338,7 +339,11 @@ parameter_types! { // A typical solution currently occupies 120kb. This formula is currently adjusted such that a // typical solution will spend approximately equal amounts on the base and per-byte deposits. pub const SignedDepositByte: Balance = deposit(1, 0) / (120 * 1024 * 1024); - pub const SignedRewardBase: Balance = 1 * CENTS; + pub SignedRewardBase: Balance = fee_for_submit_call::< + Runtime, + crate::constants::fee::WeightToFee, + crate::weights::pallet_election_provider_multi_phase::WeightInfo, + >(Perbill::from_perthousand(1500)); // fallback: emergency phase. pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 367313df9d04..008e77812542 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -36,7 +36,7 @@ use runtime_common::{ impls::ToAuthor, BlockHashCount, BlockWeights, BlockLength, RocksDbWeight, OffchainSolutionWeightLimit, OffchainSolutionLengthLimit, - elections::fee_for_weight, + elections::fee_for_submit_call, }; use runtime_parachains::origin as parachains_origin; @@ -344,11 +344,11 @@ parameter_types! { // A typical solution occupies 20kb. This formula is currently adjusted such that a typical // solution will spend approximately equal amounts on the base and per-byte deposits. pub const SignedDepositByte: Balance = deposit(1, 0) / (20 * 1024 * 1024); - pub const SignedRewardBase: Balance = fee_for_weight::< + pub SignedRewardBase: Balance = fee_for_submit_call::< Runtime, crate::constants::fee::WeightToFee, crate::weights::pallet_election_provider_multi_phase::WeightInfo, - >(Perbill::from_perthousand(3500)); + >(Perbill::from_perthousand(1500)); // fallback: emergency phase. pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = From f5b6dd5d66d95fab425370702c3e296565641fda Mon Sep 17 00:00:00 2001 From: Peter Goodspeed-Niklaus Date: Fri, 25 Jun 2021 09:32:01 +0200 Subject: [PATCH 12/14] all chains use deposit byte of base per 50k --- runtime/kusama/src/lib.rs | 7 ++++--- runtime/polkadot/src/lib.rs | 7 ++++--- runtime/westend/src/lib.rs | 7 ++++--- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 4bb0c1249447..01d7ac673266 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -356,9 +356,10 @@ parameter_types! { // signed config pub const SignedMaxSubmissions: u32 = 16; pub const SignedDepositBase: Balance = deposit(1, 0); - // A typical solution occupies 20kb. This formula is currently adjusted such that a typical - // solution will spend approximately equal amounts on the base and per-byte deposits. - pub const SignedDepositByte: Balance = deposit(1, 0) / (20 * 1024 * 1024); + // A typical solution occupies within an order of magnitude of 50kb. + // This formula is currently adjusted such that a typical solution will spend an amount equal + // to the base deposit for every 50 kb. + pub const SignedDepositByte: Balance = deposit(1, 0) / (50 * 1024); pub SignedRewardBase: Balance = fee_for_submit_call::< Runtime, crate::constants::fee::WeightToFee, diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 1f2f89aa0455..57a4ed45efb9 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -336,9 +336,10 @@ parameter_types! { // signed config pub const SignedMaxSubmissions: u32 = 16; pub const SignedDepositBase: Balance = deposit(1, 0); - // A typical solution currently occupies 120kb. This formula is currently adjusted such that a - // typical solution will spend approximately equal amounts on the base and per-byte deposits. - pub const SignedDepositByte: Balance = deposit(1, 0) / (120 * 1024 * 1024); + // A typical solution occupies within an order of magnitude of 50kb. + // This formula is currently adjusted such that a typical solution will spend an amount equal + // to the base deposit for every 50 kb. + pub const SignedDepositByte: Balance = deposit(1, 0) / (50 * 1024); pub SignedRewardBase: Balance = fee_for_submit_call::< Runtime, crate::constants::fee::WeightToFee, diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 008e77812542..65cf87cd8fab 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -341,9 +341,10 @@ parameter_types! { // signed config pub const SignedMaxSubmissions: u32 = 128; pub const SignedDepositBase: Balance = deposit(1, 0); - // A typical solution occupies 20kb. This formula is currently adjusted such that a typical - // solution will spend approximately equal amounts on the base and per-byte deposits. - pub const SignedDepositByte: Balance = deposit(1, 0) / (20 * 1024 * 1024); + // A typical solution occupies within an order of magnitude of 50kb. + // This formula is currently adjusted such that a typical solution will spend an amount equal + // to the base deposit for every 50 kb. + pub const SignedDepositByte: Balance = deposit(1, 0) / (50 * 1024); pub SignedRewardBase: Balance = fee_for_submit_call::< Runtime, crate::constants::fee::WeightToFee, From 7084efc1a05c2725118c3c6b7614a52fa7728c1a Mon Sep 17 00:00:00 2001 From: parity-processbot <> Date: Mon, 28 Jun 2021 09:20:43 +0000 Subject: [PATCH 13/14] update Substrate --- Cargo.lock | 310 ++++++++++++++++++++++++++--------------------------- 1 file changed, 155 insertions(+), 155 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ece966f2f44b..cc7023710c2e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1912,7 +1912,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "parity-scale-codec", ] @@ -1930,7 +1930,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "3.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-support", "frame-system", @@ -1949,7 +1949,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "Inflector", "chrono", @@ -1972,7 +1972,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-support", "frame-system", @@ -1985,7 +1985,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-support", "frame-system", @@ -2000,7 +2000,7 @@ dependencies = [ [[package]] name = "frame-metadata" version = "13.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "parity-scale-codec", "serde", @@ -2011,7 +2011,7 @@ dependencies = [ [[package]] name = "frame-support" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "bitflags", "frame-metadata", @@ -2038,7 +2038,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2050,7 +2050,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 1.0.0", @@ -2062,7 +2062,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "proc-macro2", "quote", @@ -2072,7 +2072,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-metadata", "frame-support", @@ -2092,7 +2092,7 @@ dependencies = [ [[package]] name = "frame-system" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-support", "impl-trait-for-tuples", @@ -2109,7 +2109,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-support", @@ -2123,7 +2123,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "parity-scale-codec", "sp-api", @@ -2132,7 +2132,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-support", "parity-scale-codec", @@ -4064,7 +4064,7 @@ dependencies = [ [[package]] name = "max-encoded-len" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "impl-trait-for-tuples", "max-encoded-len-derive", @@ -4075,7 +4075,7 @@ dependencies = [ [[package]] name = "max-encoded-len-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -4578,7 +4578,7 @@ checksum = "13370dae44474229701bb69b90b4f4dca6404cb0357a2d50d635f1171dc3aa7b" [[package]] name = "pallet-authority-discovery" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-support", "frame-system", @@ -4593,7 +4593,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-support", "frame-system", @@ -4607,7 +4607,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4630,7 +4630,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4660,7 +4660,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4696,7 +4696,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4712,7 +4712,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4727,7 +4727,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4748,7 +4748,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4765,7 +4765,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4779,7 +4779,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "3.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4801,7 +4801,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "enumflags2", "frame-benchmarking", @@ -4816,7 +4816,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4835,7 +4835,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4851,7 +4851,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4866,7 +4866,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -4883,7 +4883,7 @@ dependencies = [ [[package]] name = "pallet-mmr-primitives" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-support", "frame-system", @@ -4899,7 +4899,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -4917,7 +4917,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4932,7 +4932,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-support", "frame-system", @@ -4945,7 +4945,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-support", "frame-system", @@ -4961,7 +4961,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4983,7 +4983,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-support", @@ -4999,7 +4999,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "enumflags2", "frame-support", @@ -5013,7 +5013,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5028,7 +5028,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-support", "frame-system", @@ -5048,7 +5048,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5064,7 +5064,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-support", "frame-system", @@ -5077,7 +5077,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5101,7 +5101,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -5112,7 +5112,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "log", "sp-arithmetic", @@ -5121,7 +5121,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-support", "frame-system", @@ -5134,7 +5134,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5152,7 +5152,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5167,7 +5167,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-support", "frame-system", @@ -5183,7 +5183,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5200,7 +5200,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5211,7 +5211,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5227,7 +5227,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-benchmarking", "frame-support", @@ -5242,7 +5242,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7575,7 +7575,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "env_logger 0.8.4", "hex", @@ -7869,7 +7869,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "async-trait", "derive_more", @@ -7898,7 +7898,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "futures 0.3.15", "futures-timer 3.0.2", @@ -7921,7 +7921,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -7937,7 +7937,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -7958,7 +7958,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -7969,7 +7969,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "chrono", "fdlimit", @@ -8007,7 +8007,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "derive_more", "fnv", @@ -8041,7 +8041,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "blake2-rfc", "hash-db", @@ -8071,7 +8071,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "async-trait", "parking_lot 0.11.1", @@ -8084,7 +8084,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "async-trait", "derive_more", @@ -8130,7 +8130,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "derive_more", "futures 0.3.15", @@ -8154,7 +8154,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8167,7 +8167,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "async-trait", "futures 0.3.15", @@ -8195,7 +8195,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "sc-client-api", "sp-authorship", @@ -8206,7 +8206,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "derive_more", "lazy_static", @@ -8235,7 +8235,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "derive_more", "parity-scale-codec", @@ -8252,7 +8252,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "log", "parity-scale-codec", @@ -8267,7 +8267,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "cfg-if 1.0.0", "libc", @@ -8286,7 +8286,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "async-trait", "derive_more", @@ -8327,7 +8327,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "derive_more", "finality-grandpa", @@ -8351,7 +8351,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-warp-sync" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "derive_more", "futures 0.3.15", @@ -8372,7 +8372,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "ansi_term 0.12.1", "futures 0.3.15", @@ -8390,7 +8390,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "async-trait", "derive_more", @@ -8410,7 +8410,7 @@ dependencies = [ [[package]] name = "sc-light" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "hash-db", "lazy_static", @@ -8429,7 +8429,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "async-std", "async-trait", @@ -8482,7 +8482,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "futures 0.3.15", "futures-timer 3.0.2", @@ -8499,7 +8499,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "bytes 0.5.6", "fnv", @@ -8527,7 +8527,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "futures 0.3.15", "libp2p", @@ -8540,7 +8540,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -8549,7 +8549,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "futures 0.3.15", "hash-db", @@ -8584,7 +8584,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "derive_more", "futures 0.3.15", @@ -8609,7 +8609,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "futures 0.1.29", "jsonrpc-core", @@ -8627,7 +8627,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "async-trait", "directories", @@ -8693,7 +8693,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "log", "parity-scale-codec", @@ -8708,7 +8708,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -8728,7 +8728,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "chrono", "futures 0.3.15", @@ -8748,7 +8748,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "ansi_term 0.12.1", "atty", @@ -8785,7 +8785,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -8796,7 +8796,7 @@ dependencies = [ [[package]] name = "sc-transaction-graph" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "derive_more", "futures 0.3.15", @@ -8818,7 +8818,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "futures 0.3.15", "intervalier", @@ -9297,7 +9297,7 @@ dependencies = [ [[package]] name = "sp-allocator" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "log", "sp-core", @@ -9309,7 +9309,7 @@ dependencies = [ [[package]] name = "sp-api" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "hash-db", "log", @@ -9326,7 +9326,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "blake2-rfc", "proc-macro-crate 1.0.0", @@ -9338,7 +9338,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "max-encoded-len", "parity-scale-codec", @@ -9351,7 +9351,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "integer-sqrt", "num-traits", @@ -9365,7 +9365,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "parity-scale-codec", "sp-api", @@ -9377,7 +9377,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "async-trait", "parity-scale-codec", @@ -9389,7 +9389,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "parity-scale-codec", "sp-api", @@ -9401,7 +9401,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "futures 0.3.15", "log", @@ -9419,7 +9419,7 @@ dependencies = [ [[package]] name = "sp-chain-spec" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "serde", "serde_json", @@ -9428,7 +9428,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "async-trait", "futures 0.3.15", @@ -9455,7 +9455,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "async-trait", "merlin", @@ -9477,7 +9477,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "parity-scale-codec", "sp-arithmetic", @@ -9487,7 +9487,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -9499,7 +9499,7 @@ dependencies = [ [[package]] name = "sp-core" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "base58", "blake2-rfc", @@ -9544,7 +9544,7 @@ dependencies = [ [[package]] name = "sp-database" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "kvdb", "parking_lot 0.11.1", @@ -9553,7 +9553,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "proc-macro2", "quote", @@ -9563,7 +9563,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "environmental", "parity-scale-codec", @@ -9574,7 +9574,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "finality-grandpa", "log", @@ -9591,7 +9591,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -9605,7 +9605,7 @@ dependencies = [ [[package]] name = "sp-io" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "futures 0.3.15", "hash-db", @@ -9630,7 +9630,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "lazy_static", "sp-core", @@ -9641,7 +9641,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "async-trait", "derive_more", @@ -9658,7 +9658,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "ruzstd", "zstd", @@ -9667,7 +9667,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "parity-scale-codec", "serde", @@ -9680,7 +9680,7 @@ dependencies = [ [[package]] name = "sp-npos-elections-compact" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -9691,7 +9691,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "sp-api", "sp-core", @@ -9701,7 +9701,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "backtrace", ] @@ -9709,7 +9709,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "rustc-hash", "serde", @@ -9720,7 +9720,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "either", "hash256-std-hasher", @@ -9742,7 +9742,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -9759,7 +9759,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "Inflector", "proc-macro-crate 1.0.0", @@ -9771,7 +9771,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "serde", "serde_json", @@ -9780,7 +9780,7 @@ dependencies = [ [[package]] name = "sp-session" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "parity-scale-codec", "sp-api", @@ -9793,7 +9793,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "parity-scale-codec", "sp-runtime", @@ -9803,7 +9803,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "hash-db", "log", @@ -9826,12 +9826,12 @@ dependencies = [ [[package]] name = "sp-std" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" [[package]] name = "sp-storage" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "impl-serde", "parity-scale-codec", @@ -9844,7 +9844,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "log", "sp-core", @@ -9857,7 +9857,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "async-trait", "futures-timer 3.0.2", @@ -9874,7 +9874,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "erased-serde", "log", @@ -9892,7 +9892,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "derive_more", "futures 0.3.15", @@ -9908,7 +9908,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "async-trait", "log", @@ -9923,7 +9923,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "hash-db", "memory-db", @@ -9937,7 +9937,7 @@ dependencies = [ [[package]] name = "sp-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "futures 0.3.15", "futures-core", @@ -9949,7 +9949,7 @@ dependencies = [ [[package]] name = "sp-version" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "impl-serde", "parity-scale-codec", @@ -9962,7 +9962,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "parity-scale-codec", "proc-macro-crate 1.0.0", @@ -9974,7 +9974,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10119,7 +10119,7 @@ dependencies = [ [[package]] name = "substrate-browser-utils" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "chrono", "console_error_panic_hook", @@ -10145,7 +10145,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "platforms", ] @@ -10153,7 +10153,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.15", @@ -10176,7 +10176,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "async-std", "derive_more", @@ -10190,7 +10190,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "async-trait", "futures 0.1.29", @@ -10219,7 +10219,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "futures 0.3.15", "substrate-test-utils-derive", @@ -10229,7 +10229,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "proc-macro-crate 1.0.0", "quote", @@ -10239,7 +10239,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#01ff4cef6626448998a3bcbc5be401dc15a394cf" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "ansi_term 0.12.1", "atty", @@ -10984,7 +10984,7 @@ checksum = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" [[package]] name = "try-runtime-cli" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#df5012292cea6f5a747ff0e32d2e3c25b73001d9" +source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" dependencies = [ "frame-try-runtime", "log", From 8cf97b6cab647c7bdb48cea22190fb4168dd6b94 Mon Sep 17 00:00:00 2001 From: Peter Goodspeed-Niklaus Date: Mon, 28 Jun 2021 14:04:26 +0200 Subject: [PATCH 14/14] cargo update -p pallet-election-provider-multi-phase --- Cargo.lock | 310 ++++++++++++++++++++++++++--------------------------- 1 file changed, 155 insertions(+), 155 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cc7023710c2e..1ae77dc38d8e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1912,7 +1912,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "parity-scale-codec", ] @@ -1930,7 +1930,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "3.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-support", "frame-system", @@ -1949,7 +1949,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "Inflector", "chrono", @@ -1972,7 +1972,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-support", "frame-system", @@ -1985,7 +1985,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-support", "frame-system", @@ -2000,7 +2000,7 @@ dependencies = [ [[package]] name = "frame-metadata" version = "13.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "parity-scale-codec", "serde", @@ -2011,7 +2011,7 @@ dependencies = [ [[package]] name = "frame-support" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "bitflags", "frame-metadata", @@ -2038,7 +2038,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2050,7 +2050,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 1.0.0", @@ -2062,7 +2062,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "proc-macro2", "quote", @@ -2072,7 +2072,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-metadata", "frame-support", @@ -2092,7 +2092,7 @@ dependencies = [ [[package]] name = "frame-system" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-support", "impl-trait-for-tuples", @@ -2109,7 +2109,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-support", @@ -2123,7 +2123,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "parity-scale-codec", "sp-api", @@ -2132,7 +2132,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-support", "parity-scale-codec", @@ -4064,7 +4064,7 @@ dependencies = [ [[package]] name = "max-encoded-len" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "impl-trait-for-tuples", "max-encoded-len-derive", @@ -4075,7 +4075,7 @@ dependencies = [ [[package]] name = "max-encoded-len-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -4578,7 +4578,7 @@ checksum = "13370dae44474229701bb69b90b4f4dca6404cb0357a2d50d635f1171dc3aa7b" [[package]] name = "pallet-authority-discovery" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-support", "frame-system", @@ -4593,7 +4593,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-support", "frame-system", @@ -4607,7 +4607,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-support", @@ -4630,7 +4630,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-support", @@ -4660,7 +4660,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-support", @@ -4696,7 +4696,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-support", @@ -4712,7 +4712,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-support", @@ -4727,7 +4727,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4748,7 +4748,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-support", @@ -4765,7 +4765,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-support", @@ -4779,7 +4779,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "3.1.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-support", @@ -4801,7 +4801,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "enumflags2", "frame-benchmarking", @@ -4816,7 +4816,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-support", @@ -4835,7 +4835,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-support", @@ -4851,7 +4851,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-support", @@ -4866,7 +4866,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -4883,7 +4883,7 @@ dependencies = [ [[package]] name = "pallet-mmr-primitives" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-support", "frame-system", @@ -4899,7 +4899,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -4917,7 +4917,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-support", @@ -4932,7 +4932,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-support", "frame-system", @@ -4945,7 +4945,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-support", "frame-system", @@ -4961,7 +4961,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4983,7 +4983,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-support", @@ -4999,7 +4999,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "enumflags2", "frame-support", @@ -5013,7 +5013,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-support", @@ -5028,7 +5028,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-support", "frame-system", @@ -5048,7 +5048,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-support", @@ -5064,7 +5064,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-support", "frame-system", @@ -5077,7 +5077,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5101,7 +5101,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -5112,7 +5112,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "log", "sp-arithmetic", @@ -5121,7 +5121,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-support", "frame-system", @@ -5134,7 +5134,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-support", @@ -5152,7 +5152,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-support", @@ -5167,7 +5167,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-support", "frame-system", @@ -5183,7 +5183,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5200,7 +5200,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5211,7 +5211,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-support", @@ -5227,7 +5227,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-benchmarking", "frame-support", @@ -5242,7 +5242,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7575,7 +7575,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "env_logger 0.8.4", "hex", @@ -7869,7 +7869,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "async-trait", "derive_more", @@ -7898,7 +7898,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "futures 0.3.15", "futures-timer 3.0.2", @@ -7921,7 +7921,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -7937,7 +7937,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -7958,7 +7958,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -7969,7 +7969,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "chrono", "fdlimit", @@ -8007,7 +8007,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "derive_more", "fnv", @@ -8041,7 +8041,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "blake2-rfc", "hash-db", @@ -8071,7 +8071,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "async-trait", "parking_lot 0.11.1", @@ -8084,7 +8084,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "async-trait", "derive_more", @@ -8130,7 +8130,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "derive_more", "futures 0.3.15", @@ -8154,7 +8154,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8167,7 +8167,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "async-trait", "futures 0.3.15", @@ -8195,7 +8195,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "sc-client-api", "sp-authorship", @@ -8206,7 +8206,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "derive_more", "lazy_static", @@ -8235,7 +8235,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "derive_more", "parity-scale-codec", @@ -8252,7 +8252,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "log", "parity-scale-codec", @@ -8267,7 +8267,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "cfg-if 1.0.0", "libc", @@ -8286,7 +8286,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "async-trait", "derive_more", @@ -8327,7 +8327,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "derive_more", "finality-grandpa", @@ -8351,7 +8351,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-warp-sync" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "derive_more", "futures 0.3.15", @@ -8372,7 +8372,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "ansi_term 0.12.1", "futures 0.3.15", @@ -8390,7 +8390,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "async-trait", "derive_more", @@ -8410,7 +8410,7 @@ dependencies = [ [[package]] name = "sc-light" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "hash-db", "lazy_static", @@ -8429,7 +8429,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "async-std", "async-trait", @@ -8482,7 +8482,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "futures 0.3.15", "futures-timer 3.0.2", @@ -8499,7 +8499,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "bytes 0.5.6", "fnv", @@ -8527,7 +8527,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "futures 0.3.15", "libp2p", @@ -8540,7 +8540,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -8549,7 +8549,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "futures 0.3.15", "hash-db", @@ -8584,7 +8584,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "derive_more", "futures 0.3.15", @@ -8609,7 +8609,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "futures 0.1.29", "jsonrpc-core", @@ -8627,7 +8627,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "async-trait", "directories", @@ -8693,7 +8693,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "log", "parity-scale-codec", @@ -8708,7 +8708,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -8728,7 +8728,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "chrono", "futures 0.3.15", @@ -8748,7 +8748,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "ansi_term 0.12.1", "atty", @@ -8785,7 +8785,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -8796,7 +8796,7 @@ dependencies = [ [[package]] name = "sc-transaction-graph" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "derive_more", "futures 0.3.15", @@ -8818,7 +8818,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "futures 0.3.15", "intervalier", @@ -9297,7 +9297,7 @@ dependencies = [ [[package]] name = "sp-allocator" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "log", "sp-core", @@ -9309,7 +9309,7 @@ dependencies = [ [[package]] name = "sp-api" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "hash-db", "log", @@ -9326,7 +9326,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "blake2-rfc", "proc-macro-crate 1.0.0", @@ -9338,7 +9338,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "max-encoded-len", "parity-scale-codec", @@ -9351,7 +9351,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "integer-sqrt", "num-traits", @@ -9365,7 +9365,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "parity-scale-codec", "sp-api", @@ -9377,7 +9377,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "async-trait", "parity-scale-codec", @@ -9389,7 +9389,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "parity-scale-codec", "sp-api", @@ -9401,7 +9401,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "futures 0.3.15", "log", @@ -9419,7 +9419,7 @@ dependencies = [ [[package]] name = "sp-chain-spec" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "serde", "serde_json", @@ -9428,7 +9428,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "async-trait", "futures 0.3.15", @@ -9455,7 +9455,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "async-trait", "merlin", @@ -9477,7 +9477,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "parity-scale-codec", "sp-arithmetic", @@ -9487,7 +9487,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -9499,7 +9499,7 @@ dependencies = [ [[package]] name = "sp-core" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "base58", "blake2-rfc", @@ -9544,7 +9544,7 @@ dependencies = [ [[package]] name = "sp-database" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "kvdb", "parking_lot 0.11.1", @@ -9553,7 +9553,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "proc-macro2", "quote", @@ -9563,7 +9563,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "environmental", "parity-scale-codec", @@ -9574,7 +9574,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "finality-grandpa", "log", @@ -9591,7 +9591,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -9605,7 +9605,7 @@ dependencies = [ [[package]] name = "sp-io" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "futures 0.3.15", "hash-db", @@ -9630,7 +9630,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "lazy_static", "sp-core", @@ -9641,7 +9641,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "async-trait", "derive_more", @@ -9658,7 +9658,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "ruzstd", "zstd", @@ -9667,7 +9667,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "parity-scale-codec", "serde", @@ -9680,7 +9680,7 @@ dependencies = [ [[package]] name = "sp-npos-elections-compact" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -9691,7 +9691,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "sp-api", "sp-core", @@ -9701,7 +9701,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "backtrace", ] @@ -9709,7 +9709,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "rustc-hash", "serde", @@ -9720,7 +9720,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "either", "hash256-std-hasher", @@ -9742,7 +9742,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -9759,7 +9759,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "Inflector", "proc-macro-crate 1.0.0", @@ -9771,7 +9771,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "serde", "serde_json", @@ -9780,7 +9780,7 @@ dependencies = [ [[package]] name = "sp-session" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "parity-scale-codec", "sp-api", @@ -9793,7 +9793,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "parity-scale-codec", "sp-runtime", @@ -9803,7 +9803,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "hash-db", "log", @@ -9826,12 +9826,12 @@ dependencies = [ [[package]] name = "sp-std" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" [[package]] name = "sp-storage" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "impl-serde", "parity-scale-codec", @@ -9844,7 +9844,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "log", "sp-core", @@ -9857,7 +9857,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "async-trait", "futures-timer 3.0.2", @@ -9874,7 +9874,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "erased-serde", "log", @@ -9892,7 +9892,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "derive_more", "futures 0.3.15", @@ -9908,7 +9908,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "async-trait", "log", @@ -9923,7 +9923,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "hash-db", "memory-db", @@ -9937,7 +9937,7 @@ dependencies = [ [[package]] name = "sp-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "futures 0.3.15", "futures-core", @@ -9949,7 +9949,7 @@ dependencies = [ [[package]] name = "sp-version" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "impl-serde", "parity-scale-codec", @@ -9962,7 +9962,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "parity-scale-codec", "proc-macro-crate 1.0.0", @@ -9974,7 +9974,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10119,7 +10119,7 @@ dependencies = [ [[package]] name = "substrate-browser-utils" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "chrono", "console_error_panic_hook", @@ -10145,7 +10145,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "platforms", ] @@ -10153,7 +10153,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.15", @@ -10176,7 +10176,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "async-std", "derive_more", @@ -10190,7 +10190,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "async-trait", "futures 0.1.29", @@ -10219,7 +10219,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "futures 0.3.15", "substrate-test-utils-derive", @@ -10229,7 +10229,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "proc-macro-crate 1.0.0", "quote", @@ -10239,7 +10239,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "ansi_term 0.12.1", "atty", @@ -10984,7 +10984,7 @@ checksum = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" [[package]] name = "try-runtime-cli" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=master#c44e5d69aa408d98ce4bcca0d8d8f08a1026e5a4" +source = "git+https://github.com/paritytech/substrate?branch=master#24b26b9cc0c5d8fcb81857b7d0f3815ad27a2b1a" dependencies = [ "frame-try-runtime", "log",