From e80b0c129353a8a31b62b156a39d2aea8540707a Mon Sep 17 00:00:00 2001 From: Huang ZY Date: Tue, 14 Jun 2022 21:58:27 +0800 Subject: [PATCH 1/3] Companion for substrate#11618 --- bridges/bin/millau/runtime/src/lib.rs | 3 ++- bridges/bin/rialto-parachain/runtime/src/lib.rs | 3 ++- bridges/bin/rialto/runtime/src/lib.rs | 1 + runtime/kusama/src/lib.rs | 3 ++- runtime/polkadot/src/lib.rs | 3 ++- runtime/rococo/src/lib.rs | 1 + runtime/test-runtime/src/lib.rs | 3 ++- runtime/westend/src/lib.rs | 3 ++- 8 files changed, 14 insertions(+), 6 deletions(-) diff --git a/bridges/bin/millau/runtime/src/lib.rs b/bridges/bin/millau/runtime/src/lib.rs index fd4cfd307622..4714dab68a46 100644 --- a/bridges/bin/millau/runtime/src/lib.rs +++ b/bridges/bin/millau/runtime/src/lib.rs @@ -334,6 +334,7 @@ parameter_types! { } impl pallet_transaction_payment::Config for Runtime { + type Event = Event; type OnChargeTransaction = pallet_transaction_payment::CurrencyAdapter; type TransactionByteFee = TransactionByteFee; type OperationalFeeMultiplier = OperationalFeeMultiplier; @@ -507,7 +508,7 @@ construct_runtime!( Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent}, Balances: pallet_balances::{Pallet, Call, Storage, Config, Event}, - TransactionPayment: pallet_transaction_payment::{Pallet, Storage}, + TransactionPayment: pallet_transaction_payment::{Pallet, Storage, Event}, // Consensus support. Session: pallet_session::{Pallet, Call, Storage, Event, Config}, diff --git a/bridges/bin/rialto-parachain/runtime/src/lib.rs b/bridges/bin/rialto-parachain/runtime/src/lib.rs index 4f81927f0f6f..555db03a9c48 100644 --- a/bridges/bin/rialto-parachain/runtime/src/lib.rs +++ b/bridges/bin/rialto-parachain/runtime/src/lib.rs @@ -251,6 +251,7 @@ impl pallet_balances::Config for Runtime { } impl pallet_transaction_payment::Config for Runtime { + type Event = Event; type OnChargeTransaction = pallet_transaction_payment::CurrencyAdapter; type TransactionByteFee = TransactionByteFee; type OperationalFeeMultiplier = OperationalFeeMultiplier; @@ -457,7 +458,7 @@ construct_runtime!( Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent}, Sudo: pallet_sudo::{Pallet, Call, Storage, Config, Event}, RandomnessCollectiveFlip: pallet_randomness_collective_flip::{Pallet, Storage}, - TransactionPayment: pallet_transaction_payment::{Pallet, Storage}, + TransactionPayment: pallet_transaction_payment::{Pallet, Storage, Event}, ParachainSystem: cumulus_pallet_parachain_system::{Pallet, Call, Storage, Inherent, Event} = 20, ParachainInfo: parachain_info::{Pallet, Storage, Config} = 21, diff --git a/bridges/bin/rialto/runtime/src/lib.rs b/bridges/bin/rialto/runtime/src/lib.rs index 6be1e44afa8b..e93688439107 100644 --- a/bridges/bin/rialto/runtime/src/lib.rs +++ b/bridges/bin/rialto/runtime/src/lib.rs @@ -364,6 +364,7 @@ parameter_types! { } impl pallet_transaction_payment::Config for Runtime { + type Event = Event; type OnChargeTransaction = pallet_transaction_payment::CurrencyAdapter; type TransactionByteFee = TransactionByteFee; type OperationalFeeMultiplier = OperationalFeeMultiplier; diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 9059cd90a871..012f02e42614 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -327,6 +327,7 @@ parameter_types! { } impl pallet_transaction_payment::Config for Runtime { + type Event = Event; type OnChargeTransaction = CurrencyAdapter>; type OperationalFeeMultiplier = OperationalFeeMultiplier; type WeightToFee = WeightToFee; @@ -1497,7 +1498,7 @@ construct_runtime! { Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent} = 2, Indices: pallet_indices::{Pallet, Call, Storage, Config, Event} = 3, Balances: pallet_balances::{Pallet, Call, Storage, Config, Event} = 4, - TransactionPayment: pallet_transaction_payment::{Pallet, Storage} = 33, + TransactionPayment: pallet_transaction_payment::{Pallet, Storage, Event} = 33, // Consensus support. // Authorship must be before session in order to note author in the correct session and era diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 17296d36fa92..419af3d4c818 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -370,6 +370,7 @@ parameter_types! { } impl pallet_transaction_payment::Config for Runtime { + type Event = Event; type OnChargeTransaction = CurrencyAdapter>; type OperationalFeeMultiplier = OperationalFeeMultiplier; type WeightToFee = WeightToFee; @@ -1405,7 +1406,7 @@ construct_runtime! { Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent} = 3, Indices: pallet_indices::{Pallet, Call, Storage, Config, Event} = 4, Balances: pallet_balances::{Pallet, Call, Storage, Config, Event} = 5, - TransactionPayment: pallet_transaction_payment::{Pallet, Storage} = 32, + TransactionPayment: pallet_transaction_payment::{Pallet, Storage, Event} = 32, // Consensus support. // Authorship must be before session in order to note author in the correct session and era diff --git a/runtime/rococo/src/lib.rs b/runtime/rococo/src/lib.rs index e79c32d1d40b..1aa8dd85a641 100644 --- a/runtime/rococo/src/lib.rs +++ b/runtime/rococo/src/lib.rs @@ -459,6 +459,7 @@ parameter_types! { } impl pallet_transaction_payment::Config for Runtime { + type Event = Event; type OnChargeTransaction = CurrencyAdapter>; type OperationalFeeMultiplier = OperationalFeeMultiplier; type WeightToFee = WeightToFee; diff --git a/runtime/test-runtime/src/lib.rs b/runtime/test-runtime/src/lib.rs index 783c1801a8e9..a27e8635100d 100644 --- a/runtime/test-runtime/src/lib.rs +++ b/runtime/test-runtime/src/lib.rs @@ -236,6 +236,7 @@ parameter_types! { } impl pallet_transaction_payment::Config for Runtime { + type Event = Event; type OnChargeTransaction = CurrencyAdapter; type OperationalFeeMultiplier = OperationalFeeMultiplier; type WeightToFee = WeightToFee; @@ -669,7 +670,7 @@ construct_runtime! { Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent}, Indices: pallet_indices::{Pallet, Call, Storage, Config, Event}, Balances: pallet_balances::{Pallet, Call, Storage, Config, Event}, - TransactionPayment: pallet_transaction_payment::{Pallet, Storage}, + TransactionPayment: pallet_transaction_payment::{Pallet, Storage, Event}, // Consensus support. Authorship: pallet_authorship::{Pallet, Call, Storage}, diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index dcbee5ef7040..138d98956a98 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -282,6 +282,7 @@ parameter_types! { } impl pallet_transaction_payment::Config for Runtime { + type Event = Event; type OnChargeTransaction = CurrencyAdapter>; type OperationalFeeMultiplier = OperationalFeeMultiplier; type WeightToFee = WeightToFee; @@ -1062,7 +1063,7 @@ construct_runtime! { Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent} = 2, Indices: pallet_indices::{Pallet, Call, Storage, Config, Event} = 3, Balances: pallet_balances::{Pallet, Call, Storage, Config, Event} = 4, - TransactionPayment: pallet_transaction_payment::{Pallet, Storage} = 26, + TransactionPayment: pallet_transaction_payment::{Pallet, Storage, Event} = 26, // Consensus support. // Authorship must be before session in order to note author in the correct session and era From 413872468d05fc8bdb5e62906e271f2162f14110 Mon Sep 17 00:00:00 2001 From: Huang ZY Date: Tue, 14 Jun 2022 22:44:59 +0800 Subject: [PATCH 2/3] Fix --- bridges/bin/rialto/runtime/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridges/bin/rialto/runtime/src/lib.rs b/bridges/bin/rialto/runtime/src/lib.rs index e93688439107..851ee3d51273 100644 --- a/bridges/bin/rialto/runtime/src/lib.rs +++ b/bridges/bin/rialto/runtime/src/lib.rs @@ -487,7 +487,7 @@ construct_runtime!( Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent}, Balances: pallet_balances::{Pallet, Call, Storage, Config, Event}, - TransactionPayment: pallet_transaction_payment::{Pallet, Storage}, + TransactionPayment: pallet_transaction_payment::{Pallet, Storage, Event}, // Consensus support. AuthorityDiscovery: pallet_authority_discovery::{Pallet, Config}, From bcf87ff69ec309aab1c637c34a2a5e2f2d5cbec3 Mon Sep 17 00:00:00 2001 From: parity-processbot <> Date: Thu, 16 Jun 2022 01:30:59 +0000 Subject: [PATCH 3/3] update lockfile for {"substrate"} --- Cargo.lock | 342 ++++++++++++++++++++++++++--------------------------- 1 file changed, 171 insertions(+), 171 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6ea5c403babc..9d73bdcc947f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -433,7 +433,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "beefy-primitives", "fnv", @@ -467,7 +467,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -487,12 +487,12 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "parity-scale-codec", "scale-info", @@ -2098,7 +2098,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "parity-scale-codec", ] @@ -2116,7 +2116,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-support", "frame-system", @@ -2138,7 +2138,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "Inflector", "chrono", @@ -2189,7 +2189,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2200,7 +2200,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2216,7 +2216,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-support", "frame-system", @@ -2244,7 +2244,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "bitflags", "frame-metadata", @@ -2274,7 +2274,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2286,7 +2286,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2298,7 +2298,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "proc-macro2", "quote", @@ -2308,7 +2308,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2331,7 +2331,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-support", "frame-system", @@ -2342,7 +2342,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-support", "log", @@ -2359,7 +2359,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -2374,7 +2374,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "parity-scale-codec", "sp-api", @@ -2383,7 +2383,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-support", "sp-api", @@ -2562,7 +2562,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "chrono", "frame-election-provider-support", @@ -4907,7 +4907,7 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -4921,7 +4921,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-support", "frame-system", @@ -4937,7 +4937,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-support", "frame-system", @@ -4952,7 +4952,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -4976,7 +4976,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4996,7 +4996,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-election-provider-support", "frame-support", @@ -5015,7 +5015,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5030,7 +5030,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "beefy-primitives", "frame-support", @@ -5046,7 +5046,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -5069,7 +5069,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5151,7 +5151,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5170,7 +5170,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5187,7 +5187,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5203,7 +5203,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5226,7 +5226,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5239,7 +5239,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5257,7 +5257,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5272,7 +5272,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5295,7 +5295,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5311,7 +5311,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5331,7 +5331,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5348,7 +5348,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5365,7 +5365,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5383,7 +5383,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5398,7 +5398,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5413,7 +5413,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-support", "frame-system", @@ -5430,7 +5430,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5449,7 +5449,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-support", "frame-system", @@ -5466,7 +5466,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5489,7 +5489,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5505,7 +5505,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5520,7 +5520,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5535,7 +5535,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5551,7 +5551,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-support", "frame-system", @@ -5572,7 +5572,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5588,7 +5588,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-support", "frame-system", @@ -5602,7 +5602,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5625,7 +5625,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -5636,7 +5636,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "log", "sp-arithmetic", @@ -5645,7 +5645,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-support", "frame-system", @@ -5659,7 +5659,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5677,7 +5677,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5696,7 +5696,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-support", "frame-system", @@ -5712,7 +5712,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -5727,7 +5727,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5738,7 +5738,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5755,7 +5755,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5771,7 +5771,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-benchmarking", "frame-support", @@ -8253,7 +8253,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -8594,7 +8594,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "log", "sp-core", @@ -8605,7 +8605,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "async-trait", "futures 0.3.21", @@ -8632,7 +8632,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "futures 0.3.21", "futures-timer", @@ -8655,7 +8655,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8671,7 +8671,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -8688,7 +8688,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8699,7 +8699,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "chrono", "clap", @@ -8738,7 +8738,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "fnv", "futures 0.3.21", @@ -8766,7 +8766,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "hash-db", "kvdb", @@ -8791,7 +8791,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "async-trait", "futures 0.3.21", @@ -8815,7 +8815,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "async-trait", "fork-tree", @@ -8858,7 +8858,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "futures 0.3.21", "jsonrpsee", @@ -8880,7 +8880,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8893,7 +8893,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "async-trait", "futures 0.3.21", @@ -8918,7 +8918,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "sc-client-api", "sp-authorship", @@ -8929,7 +8929,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "lazy_static", "lru 0.7.7", @@ -8956,7 +8956,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "environmental", "parity-scale-codec", @@ -8973,7 +8973,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "log", "parity-scale-codec", @@ -8988,7 +8988,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9006,7 +9006,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "ahash", "async-trait", @@ -9046,7 +9046,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "finality-grandpa", "futures 0.3.21", @@ -9067,7 +9067,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "ansi_term", "futures 0.3.21", @@ -9084,7 +9084,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "async-trait", "hex", @@ -9099,7 +9099,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "async-trait", "asynchronous-codec", @@ -9151,7 +9151,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "futures 0.3.21", "libp2p", @@ -9164,7 +9164,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "ahash", "futures 0.3.21", @@ -9181,7 +9181,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "futures 0.3.21", "libp2p", @@ -9201,7 +9201,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "bitflags", "either", @@ -9230,7 +9230,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "bytes", "fnv", @@ -9258,7 +9258,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "futures 0.3.21", "libp2p", @@ -9271,7 +9271,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9280,7 +9280,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "futures 0.3.21", "hash-db", @@ -9310,7 +9310,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "futures 0.3.21", "jsonrpsee", @@ -9333,7 +9333,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "futures 0.3.21", "jsonrpsee", @@ -9346,7 +9346,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "async-trait", "directories", @@ -9411,7 +9411,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "log", "parity-scale-codec", @@ -9425,7 +9425,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9444,7 +9444,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "futures 0.3.21", "libc", @@ -9463,7 +9463,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "chrono", "futures 0.3.21", @@ -9481,7 +9481,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "ansi_term", "atty", @@ -9512,7 +9512,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9523,7 +9523,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "futures 0.3.21", "futures-timer", @@ -9550,7 +9550,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "futures 0.3.21", "log", @@ -9563,7 +9563,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "futures 0.3.21", "futures-timer", @@ -10030,7 +10030,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "hash-db", "log", @@ -10047,7 +10047,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "blake2", "proc-macro-crate", @@ -10059,7 +10059,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "parity-scale-codec", "scale-info", @@ -10072,7 +10072,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "integer-sqrt", "num-traits", @@ -10087,7 +10087,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "parity-scale-codec", "scale-info", @@ -10100,7 +10100,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "async-trait", "parity-scale-codec", @@ -10112,7 +10112,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "parity-scale-codec", "sp-api", @@ -10124,7 +10124,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "futures 0.3.21", "log", @@ -10142,7 +10142,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "async-trait", "futures 0.3.21", @@ -10161,7 +10161,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "async-trait", "merlin", @@ -10184,7 +10184,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "parity-scale-codec", "scale-info", @@ -10198,7 +10198,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "parity-scale-codec", "scale-info", @@ -10211,7 +10211,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "base58", "bitflags", @@ -10257,7 +10257,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "blake2", "byteorder", @@ -10271,7 +10271,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "proc-macro2", "quote", @@ -10282,7 +10282,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "kvdb", "parking_lot 0.12.0", @@ -10291,7 +10291,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "proc-macro2", "quote", @@ -10301,7 +10301,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "environmental", "parity-scale-codec", @@ -10312,7 +10312,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "finality-grandpa", "log", @@ -10330,7 +10330,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10344,7 +10344,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "futures 0.3.21", "hash-db", @@ -10369,7 +10369,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "lazy_static", "sp-core", @@ -10380,7 +10380,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "async-trait", "futures 0.3.21", @@ -10397,7 +10397,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "thiserror", "zstd", @@ -10406,7 +10406,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "log", "parity-scale-codec", @@ -10421,7 +10421,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "parity-scale-codec", "scale-info", @@ -10435,7 +10435,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "sp-api", "sp-core", @@ -10445,7 +10445,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "backtrace", "lazy_static", @@ -10455,7 +10455,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "rustc-hash", "serde", @@ -10465,7 +10465,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "either", "hash256-std-hasher", @@ -10487,7 +10487,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10504,7 +10504,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "Inflector", "proc-macro-crate", @@ -10516,7 +10516,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "log", "parity-scale-codec", @@ -10530,7 +10530,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "serde", "serde_json", @@ -10539,7 +10539,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "parity-scale-codec", "scale-info", @@ -10553,7 +10553,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "parity-scale-codec", "scale-info", @@ -10564,7 +10564,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "hash-db", "log", @@ -10586,12 +10586,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10604,7 +10604,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "log", "sp-core", @@ -10617,7 +10617,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "async-trait", "futures-timer", @@ -10633,7 +10633,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "parity-scale-codec", "sp-std", @@ -10645,7 +10645,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "sp-api", "sp-runtime", @@ -10654,7 +10654,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "async-trait", "log", @@ -10670,7 +10670,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "hash-db", "memory-db", @@ -10686,7 +10686,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10703,7 +10703,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10714,7 +10714,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "impl-trait-for-tuples", "log", @@ -10906,7 +10906,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "platforms", ] @@ -10914,7 +10914,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.21", @@ -10935,7 +10935,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "futures-util", "hyper", @@ -10948,7 +10948,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "jsonrpsee", "log", @@ -10969,7 +10969,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "async-trait", "futures 0.3.21", @@ -10995,7 +10995,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "futures 0.3.21", "substrate-test-utils-derive", @@ -11005,7 +11005,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11016,7 +11016,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "ansi_term", "build-helper", @@ -11732,7 +11732,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5ab1a2790b65747ab7ec1d3a24dabad9282d42ae" +source = "git+https://github.com/paritytech/substrate?branch=master#c950f18507d2b4a1d353c359ee3949f1b355bc60" dependencies = [ "clap", "jsonrpsee",