From df3ecc548272f5cc2e39cc4c64b00fd986a071c4 Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi Date: Tue, 22 Mar 2022 23:52:57 -0400 Subject: [PATCH 1/3] update bounty deposit config --- runtime/kusama/src/lib.rs | 24 ++++++++++++++---------- runtime/polkadot/src/lib.rs | 24 ++++++++++++++---------- 2 files changed, 28 insertions(+), 20 deletions(-) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 494d5590d941..927c557bfe44 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -746,12 +746,6 @@ parameter_types! { pub const TipFindersFee: Percent = Percent::from_percent(20); pub const TipReportDepositBase: Balance = 100 * CENTS; pub const DataDepositPerByte: Balance = 1 * CENTS; - pub const BountyDepositBase: Balance = 100 * CENTS; - pub const BountyDepositPayoutDelay: BlockNumber = 4 * DAYS; - pub const BountyUpdatePeriod: BlockNumber = 90 * DAYS; - pub const MaximumReasonLength: u32 = 16384; - pub const BountyCuratorDeposit: Permill = Permill::from_percent(50); - pub const BountyValueMinimum: Balance = 200 * CENTS; pub const MaxApprovals: u32 = 100; pub const MaxAuthorities: u32 = 100_000; pub const MaxKeys: u32 = 10_000; @@ -782,11 +776,24 @@ impl pallet_treasury::Config for Runtime { type SpendFunds = Bounties; } +parameter_types! { + pub const BountyDepositBase: Balance = 100 * CENTS; + pub const BountyDepositPayoutDelay: BlockNumber = 4 * DAYS; + pub const BountyUpdatePeriod: BlockNumber = 90 * DAYS; + pub const MaximumReasonLength: u32 = 16384; + pub const CuratorDepositMultiplier: Permill = Permill::from_percent(50); + pub const CuratorDepositMin: Balance = 10 * CENTS; + pub const CuratorDepositMax: Balance = 20 * DOLLARS; + pub const BountyValueMinimum: Balance = 200 * CENTS; +} + impl pallet_bounties::Config for Runtime { type BountyDepositBase = BountyDepositBase; type BountyDepositPayoutDelay = BountyDepositPayoutDelay; type BountyUpdatePeriod = BountyUpdatePeriod; - type BountyCuratorDeposit = BountyCuratorDeposit; + type CuratorDepositMultiplier = CuratorDepositMultiplier; + type CuratorDepositMin = CuratorDepositMin; + type CuratorDepositMax = CuratorDepositMax; type BountyValueMinimum = BountyValueMinimum; type ChildBountyManager = ChildBounties; type DataDepositPerByte = DataDepositPerByte; @@ -798,15 +805,12 @@ impl pallet_bounties::Config for Runtime { parameter_types! { pub const MaxActiveChildBountyCount: u32 = 100; pub const ChildBountyValueMinimum: Balance = BountyValueMinimum::get() / 10; - // This will be 1% of the bounty value. - pub const ChildBountyCuratorDepositBase: Permill = Permill::from_percent(1); } impl pallet_child_bounties::Config for Runtime { type Event = Event; type MaxActiveChildBountyCount = MaxActiveChildBountyCount; type ChildBountyValueMinimum = ChildBountyValueMinimum; - type ChildBountyCuratorDepositBase = ChildBountyCuratorDepositBase; type WeightInfo = weights::pallet_child_bounties::WeightInfo; } diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 8cb75e3fe941..b3c4f0173407 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -777,12 +777,6 @@ parameter_types! { pub const TipFindersFee: Percent = Percent::from_percent(20); pub const TipReportDepositBase: Balance = 1 * DOLLARS; pub const DataDepositPerByte: Balance = 1 * CENTS; - pub const BountyDepositBase: Balance = 1 * DOLLARS; - pub const BountyDepositPayoutDelay: BlockNumber = 8 * DAYS; - pub const BountyUpdatePeriod: BlockNumber = 90 * DAYS; - pub const MaximumReasonLength: u32 = 16384; - pub const BountyCuratorDeposit: Permill = Permill::from_percent(50); - pub const BountyValueMinimum: Balance = 10 * DOLLARS; pub const MaxApprovals: u32 = 100; pub const MaxAuthorities: u32 = 100_000; pub const MaxKeys: u32 = 10_000; @@ -813,12 +807,25 @@ impl pallet_treasury::Config for Runtime { type WeightInfo = weights::pallet_treasury::WeightInfo; } +parameter_types! { + pub const BountyDepositBase: Balance = 1 * DOLLARS; + pub const BountyDepositPayoutDelay: BlockNumber = 8 * DAYS; + pub const BountyUpdatePeriod: BlockNumber = 90 * DAYS; + pub const MaximumReasonLength: u32 = 16384; + pub const CuratorDepositMultiplier: Permill = Permill::from_percent(50); + pub const CuratorDepositMin: Balance = 10 * DOLLARS; + pub const CuratorDepositMax: Balance = 200 * DOLLARS; + pub const BountyValueMinimum: Balance = 10 * DOLLARS; +} + impl pallet_bounties::Config for Runtime { type Event = Event; type BountyDepositBase = BountyDepositBase; type BountyDepositPayoutDelay = BountyDepositPayoutDelay; type BountyUpdatePeriod = BountyUpdatePeriod; - type BountyCuratorDeposit = BountyCuratorDeposit; + type CuratorDepositMultiplier = CuratorDepositMultiplier; + type CuratorDepositMin = CuratorDepositMin; + type CuratorDepositMax = CuratorDepositMax; type BountyValueMinimum = BountyValueMinimum; type ChildBountyManager = ChildBounties; type DataDepositPerByte = DataDepositPerByte; @@ -829,15 +836,12 @@ impl pallet_bounties::Config for Runtime { parameter_types! { pub const MaxActiveChildBountyCount: u32 = 100; pub const ChildBountyValueMinimum: Balance = BountyValueMinimum::get() / 10; - // This will be 1% of the bounty value. - pub const ChildBountyCuratorDepositBase: Permill = Permill::from_percent(1); } impl pallet_child_bounties::Config for Runtime { type Event = Event; type MaxActiveChildBountyCount = MaxActiveChildBountyCount; type ChildBountyValueMinimum = ChildBountyValueMinimum; - type ChildBountyCuratorDepositBase = ChildBountyCuratorDepositBase; type WeightInfo = weights::pallet_child_bounties::WeightInfo; } From 3f1afa8e65717230ea28f702f42697fc6c5de894 Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi Date: Wed, 23 Mar 2022 02:12:28 -0400 Subject: [PATCH 2/3] fix --- runtime/kusama/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 927c557bfe44..9739a9b12191 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -783,7 +783,7 @@ parameter_types! { pub const MaximumReasonLength: u32 = 16384; pub const CuratorDepositMultiplier: Permill = Permill::from_percent(50); pub const CuratorDepositMin: Balance = 10 * CENTS; - pub const CuratorDepositMax: Balance = 20 * DOLLARS; + pub const CuratorDepositMax: Balance = 500 * CENTS; pub const BountyValueMinimum: Balance = 200 * CENTS; } From 6bed0cf57aacb6fe879f5d7d24f4d47a9a300560 Mon Sep 17 00:00:00 2001 From: parity-processbot <> Date: Fri, 25 Mar 2022 13:43:05 +0000 Subject: [PATCH 3/3] update lockfile for {"substrate"} --- Cargo.lock | 328 +++++++++++++++++++++++++++-------------------------- 1 file changed, 165 insertions(+), 163 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ef9817640d08..18ce2f40d034 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -450,7 +450,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "beefy-primitives", "fnv", @@ -480,7 +480,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -503,12 +503,12 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "parity-scale-codec", "scale-info", @@ -2103,7 +2103,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "parity-scale-codec", ] @@ -2121,7 +2121,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-support", "frame-system", @@ -2143,13 +2143,14 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "Inflector", "chrono", "clap", "frame-benchmarking", "frame-support", + "frame-system", "handlebars", "hash-db", "hex", @@ -2181,12 +2182,13 @@ dependencies = [ "sp-std", "sp-storage", "sp-trie", + "thousands", ] [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -2197,7 +2199,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2213,7 +2215,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-support", "frame-system", @@ -2241,7 +2243,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "bitflags", "frame-metadata", @@ -2270,7 +2272,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2282,7 +2284,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 1.1.3", @@ -2294,7 +2296,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "proc-macro2", "quote", @@ -2304,7 +2306,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2327,7 +2329,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-support", "frame-system", @@ -2338,7 +2340,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-support", "log", @@ -2355,7 +2357,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -2370,7 +2372,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "parity-scale-codec", "sp-api", @@ -2379,7 +2381,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-support", "sp-api", @@ -2575,7 +2577,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "chrono", "frame-election-provider-support", @@ -5041,7 +5043,7 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5055,7 +5057,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-support", "frame-system", @@ -5071,7 +5073,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-support", "frame-system", @@ -5086,7 +5088,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5110,7 +5112,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5130,7 +5132,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-election-provider-support", "frame-support", @@ -5150,7 +5152,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5165,7 +5167,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "beefy-primitives", "frame-support", @@ -5181,7 +5183,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -5206,7 +5208,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5288,7 +5290,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5307,7 +5309,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5324,7 +5326,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5340,7 +5342,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5363,7 +5365,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5381,7 +5383,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5396,7 +5398,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5419,7 +5421,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5435,7 +5437,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5455,7 +5457,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5472,7 +5474,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5489,7 +5491,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5507,7 +5509,7 @@ dependencies = [ [[package]] name = "pallet-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-support", "frame-system", @@ -5523,7 +5525,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5540,7 +5542,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5555,7 +5557,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-support", "frame-system", @@ -5569,7 +5571,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-support", "frame-system", @@ -5586,7 +5588,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5609,7 +5611,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5625,7 +5627,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5640,7 +5642,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-support", "frame-system", @@ -5654,7 +5656,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5670,7 +5672,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-support", "frame-system", @@ -5691,7 +5693,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5707,7 +5709,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-support", "frame-system", @@ -5721,7 +5723,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5744,7 +5746,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -5755,7 +5757,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "log", "sp-arithmetic", @@ -5764,7 +5766,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-support", "frame-system", @@ -5778,7 +5780,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5796,7 +5798,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5815,7 +5817,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-support", "frame-system", @@ -5832,7 +5834,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5849,7 +5851,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5860,7 +5862,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5877,7 +5879,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -5893,7 +5895,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-benchmarking", "frame-support", @@ -8358,7 +8360,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "env_logger 0.9.0", "jsonrpsee 0.8.0", @@ -8706,7 +8708,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "log", "sp-core", @@ -8717,7 +8719,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "async-trait", "futures 0.3.21", @@ -8744,7 +8746,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "futures 0.3.21", "futures-timer", @@ -8767,7 +8769,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8783,7 +8785,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -8800,7 +8802,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -8811,7 +8813,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "chrono", "clap", @@ -8849,7 +8851,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "fnv", "futures 0.3.21", @@ -8877,7 +8879,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "hash-db", "kvdb", @@ -8902,7 +8904,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "async-trait", "futures 0.3.21", @@ -8926,7 +8928,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "async-trait", "fork-tree", @@ -8969,7 +8971,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -8993,7 +8995,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9006,7 +9008,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "async-trait", "futures 0.3.21", @@ -9031,7 +9033,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "sc-client-api", "sp-authorship", @@ -9042,7 +9044,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "lazy_static", "lru 0.6.6", @@ -9069,7 +9071,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "environmental", "parity-scale-codec", @@ -9086,7 +9088,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "log", "parity-scale-codec", @@ -9102,7 +9104,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9120,7 +9122,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "ahash", "async-trait", @@ -9160,7 +9162,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "finality-grandpa", "futures 0.3.21", @@ -9184,7 +9186,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "ansi_term", "futures 0.3.21", @@ -9201,7 +9203,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "async-trait", "hex", @@ -9216,7 +9218,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "async-trait", "asynchronous-codec 0.5.0", @@ -9265,7 +9267,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "ahash", "futures 0.3.21", @@ -9282,7 +9284,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "bytes 1.1.0", "fnv", @@ -9310,7 +9312,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "futures 0.3.21", "libp2p", @@ -9323,7 +9325,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9332,7 +9334,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "futures 0.3.21", "hash-db", @@ -9363,7 +9365,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -9389,7 +9391,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -9406,7 +9408,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "async-trait", "directories", @@ -9470,7 +9472,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "log", "parity-scale-codec", @@ -9484,7 +9486,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -9505,7 +9507,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "chrono", "futures 0.3.21", @@ -9523,7 +9525,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "ansi_term", "atty", @@ -9554,7 +9556,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -9565,7 +9567,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9592,7 +9594,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "futures 0.3.21", "log", @@ -9605,7 +9607,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "futures 0.3.21", "futures-timer", @@ -10109,7 +10111,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "hash-db", "log", @@ -10126,7 +10128,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "blake2 0.10.2", "proc-macro-crate 1.1.3", @@ -10138,7 +10140,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "parity-scale-codec", "scale-info", @@ -10151,7 +10153,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "integer-sqrt", "num-traits", @@ -10166,7 +10168,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "parity-scale-codec", "scale-info", @@ -10179,7 +10181,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "async-trait", "parity-scale-codec", @@ -10191,7 +10193,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "parity-scale-codec", "sp-api", @@ -10203,7 +10205,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "futures 0.3.21", "log", @@ -10221,7 +10223,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "async-trait", "futures 0.3.21", @@ -10240,7 +10242,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "async-trait", "merlin", @@ -10263,7 +10265,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "parity-scale-codec", "scale-info", @@ -10277,7 +10279,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -10289,7 +10291,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "base58", "bitflags", @@ -10335,7 +10337,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "blake2 0.10.2", "byteorder", @@ -10349,7 +10351,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "proc-macro2", "quote", @@ -10360,7 +10362,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "kvdb", "parking_lot 0.12.0", @@ -10369,7 +10371,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "proc-macro2", "quote", @@ -10379,7 +10381,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "environmental", "parity-scale-codec", @@ -10390,7 +10392,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "finality-grandpa", "log", @@ -10408,7 +10410,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10422,7 +10424,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "futures 0.3.21", "hash-db", @@ -10447,7 +10449,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "lazy_static", "sp-core", @@ -10458,7 +10460,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "async-trait", "futures 0.3.21", @@ -10475,7 +10477,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "thiserror", "zstd", @@ -10484,7 +10486,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "parity-scale-codec", "scale-info", @@ -10498,7 +10500,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "sp-api", "sp-core", @@ -10508,7 +10510,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "backtrace", "lazy_static", @@ -10518,7 +10520,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "rustc-hash", "serde", @@ -10528,7 +10530,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "either", "hash256-std-hasher", @@ -10550,7 +10552,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10567,7 +10569,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "Inflector", "proc-macro-crate 1.1.3", @@ -10579,7 +10581,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "serde", "serde_json", @@ -10588,7 +10590,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "parity-scale-codec", "scale-info", @@ -10602,7 +10604,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "parity-scale-codec", "scale-info", @@ -10613,7 +10615,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "hash-db", "log", @@ -10635,12 +10637,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10653,7 +10655,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "log", "sp-core", @@ -10666,7 +10668,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "async-trait", "futures-timer", @@ -10682,7 +10684,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "parity-scale-codec", "sp-std", @@ -10694,7 +10696,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "sp-api", "sp-runtime", @@ -10703,7 +10705,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "async-trait", "log", @@ -10719,7 +10721,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "hash-db", "memory-db", @@ -10735,7 +10737,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10752,7 +10754,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10763,7 +10765,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "impl-trait-for-tuples", "log", @@ -10964,7 +10966,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "platforms", ] @@ -10972,7 +10974,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.21", @@ -10994,7 +10996,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "futures-util", "hyper", @@ -11007,7 +11009,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "async-trait", "futures 0.3.21", @@ -11033,7 +11035,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "futures 0.3.21", "substrate-test-utils-derive", @@ -11043,7 +11045,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -11054,7 +11056,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "ansi_term", "build-helper", @@ -11735,7 +11737,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#666f39b8a22108f57732215de006518738034ba2" +source = "git+https://github.com/paritytech/substrate?branch=master#26ea75756b44de8b83f927c63c6ed46a0f040386" dependencies = [ "clap", "jsonrpsee 0.4.1",