From 01b39e31faf91a1d0b107c872eb5b2bc405ab890 Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi Date: Thu, 21 May 2020 14:47:03 +0200 Subject: [PATCH 1/2] add system to benchmarks --- runtime/kusama/src/lib.rs | 3 +++ runtime/polkadot/src/lib.rs | 3 +++ runtime/westend/src/lib.rs | 3 +++ 3 files changed, 9 insertions(+) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index d03131ec1dd2..c01ef27367ab 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -1075,9 +1075,11 @@ sp_api::impl_runtime_apis! { // we need these two lines below. use pallet_session_benchmarking::Module as SessionBench; use pallet_offences_benchmarking::Module as OffencesBench; + use frame_system_benchmarking::Module as SystemBench; impl pallet_session_benchmarking::Trait for Runtime {} impl pallet_offences_benchmarking::Trait for Runtime {} + impl frame_system_benchmarking::Trait for Runtime {} let mut batches = Vec::::new(); let params = (&pallet, &benchmark, &lowest_range_values, &highest_range_values, &steps, repeat); @@ -1092,6 +1094,7 @@ sp_api::impl_runtime_apis! { add_benchmark!(params, batches, b"offences", OffencesBench::); add_benchmark!(params, batches, b"session", SessionBench::); add_benchmark!(params, batches, b"staking", Staking); + add_benchmark!(params, batches, b"system", SystemBench::); add_benchmark!(params, batches, b"timestamp", Timestamp); add_benchmark!(params, batches, b"treasury", Treasury); add_benchmark!(params, batches, b"utility", Utility); diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 59c4cb7229dc..c005c1623bda 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -992,9 +992,11 @@ sp_api::impl_runtime_apis! { // we need these two lines below. use pallet_session_benchmarking::Module as SessionBench; use pallet_offences_benchmarking::Module as OffencesBench; + use frame_system_benchmarking::Module as SystemBench; impl pallet_session_benchmarking::Trait for Runtime {} impl pallet_offences_benchmarking::Trait for Runtime {} + impl frame_system_benchmarking::Trait for Runtime {} let mut batches = Vec::::new(); let params = (&pallet, &benchmark, &lowest_range_values, &highest_range_values, &steps, repeat); @@ -1008,6 +1010,7 @@ sp_api::impl_runtime_apis! { add_benchmark!(params, batches, b"offences", OffencesBench::); add_benchmark!(params, batches, b"session", SessionBench::); add_benchmark!(params, batches, b"staking", Staking); + add_benchmark!(params, batches, b"system", SystemBench::); add_benchmark!(params, batches, b"timestamp", Timestamp); add_benchmark!(params, batches, b"treasury", Treasury); add_benchmark!(params, batches, b"vesting", Vesting); diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 71a0eeb7c21d..7dc052d069df 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -871,9 +871,11 @@ sp_api::impl_runtime_apis! { // we need these two lines below. use pallet_session_benchmarking::Module as SessionBench; use pallet_offences_benchmarking::Module as OffencesBench; + use frame_system_benchmarking::Module as SystemBench; impl pallet_session_benchmarking::Trait for Runtime {} impl pallet_offences_benchmarking::Trait for Runtime {} + impl frame_system_benchmarking::Trait for Runtime {} let mut batches = Vec::::new(); let params = (&pallet, &benchmark, &lowest_range_values, &highest_range_values, &steps, repeat); @@ -884,6 +886,7 @@ sp_api::impl_runtime_apis! { add_benchmark!(params, batches, b"offences", OffencesBench::); add_benchmark!(params, batches, b"session", SessionBench::); add_benchmark!(params, batches, b"staking", Staking); + add_benchmark!(params, batches, b"system", SystemBench::); add_benchmark!(params, batches, b"timestamp", Timestamp); add_benchmark!(params, batches, b"utility", Utility); add_benchmark!(params, batches, b"vesting", Vesting); From d430980abf1bd374fdf7edde8ebe9d23053df529 Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi Date: Thu, 21 May 2020 14:56:34 +0200 Subject: [PATCH 2/2] Update cargo files --- Cargo.lock | 280 +++++++++++++++++++----------------- runtime/kusama/Cargo.toml | 2 + runtime/polkadot/Cargo.toml | 2 + runtime/westend/Cargo.toml | 2 + 4 files changed, 155 insertions(+), 131 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 22ecbea07d8e..8530355ec8e4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1221,7 +1221,7 @@ checksum = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" [[package]] name = "fork-tree" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "parity-scale-codec", ] @@ -1229,7 +1229,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-support", "frame-system", @@ -1246,7 +1246,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-benchmarking", "parity-scale-codec", @@ -1264,7 +1264,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-support", "frame-system", @@ -1279,7 +1279,7 @@ dependencies = [ [[package]] name = "frame-metadata" version = "11.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "parity-scale-codec", "serde", @@ -1290,7 +1290,7 @@ dependencies = [ [[package]] name = "frame-support" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "bitmask", "frame-metadata", @@ -1315,7 +1315,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-support-procedural-tools", "proc-macro2 1.0.12", @@ -1326,7 +1326,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -1338,7 +1338,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "proc-macro2 1.0.12", "quote 1.0.5", @@ -1348,7 +1348,7 @@ dependencies = [ [[package]] name = "frame-system" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-support", "impl-trait-for-tuples", @@ -1361,10 +1361,24 @@ dependencies = [ "sp-version", ] +[[package]] +name = "frame-system-benchmarking" +version = "2.0.0-dev" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "sp-core", + "sp-runtime", + "sp-std", +] + [[package]] name = "frame-system-rpc-runtime-api" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "parity-scale-codec", "sp-api", @@ -2228,6 +2242,7 @@ dependencies = [ "frame-executive", "frame-support", "frame-system", + "frame-system-benchmarking", "frame-system-rpc-runtime-api", "hex-literal", "libsecp256k1", @@ -3267,7 +3282,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-support", "frame-system", @@ -3283,7 +3298,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-support", "frame-system", @@ -3298,7 +3313,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-support", "frame-system", @@ -3320,7 +3335,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-benchmarking", "frame-support", @@ -3334,7 +3349,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-benchmarking", "frame-support", @@ -3350,7 +3365,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-benchmarking", "frame-support", @@ -3365,7 +3380,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-benchmarking", "frame-support", @@ -3380,7 +3395,7 @@ dependencies = [ [[package]] name = "pallet-finality-tracker" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-support", "frame-system", @@ -3396,7 +3411,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-support", "frame-system", @@ -3416,7 +3431,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "enumflags2", "frame-benchmarking", @@ -3432,7 +3447,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-benchmarking", "frame-support", @@ -3452,7 +3467,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-support", "frame-system", @@ -3468,7 +3483,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-support", "frame-system", @@ -3482,7 +3497,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-support", "frame-system", @@ -3496,7 +3511,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-support", "frame-system", @@ -3511,7 +3526,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-benchmarking", "frame-support", @@ -3532,7 +3547,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-support", "frame-system", @@ -3545,7 +3560,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "enumflags2", "frame-support", @@ -3560,7 +3575,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-benchmarking", "frame-support", @@ -3575,7 +3590,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-support", "frame-system", @@ -3593,7 +3608,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-benchmarking", "frame-support", @@ -3607,7 +3622,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-support", "frame-system", @@ -3621,7 +3636,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-benchmarking", "frame-support", @@ -3644,7 +3659,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.12", @@ -3655,7 +3670,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-support", "frame-system", @@ -3669,7 +3684,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-benchmarking", "frame-support", @@ -3687,7 +3702,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-support", "frame-system", @@ -3701,7 +3716,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -3719,7 +3734,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-support", "parity-scale-codec", @@ -3732,7 +3747,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-benchmarking", "frame-support", @@ -3747,7 +3762,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-benchmarking", "frame-support", @@ -3763,7 +3778,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "enumflags2", "frame-benchmarking", @@ -4296,6 +4311,7 @@ dependencies = [ "frame-executive", "frame-support", "frame-system", + "frame-system-benchmarking", "frame-system-rpc-runtime-api", "hex-literal", "libsecp256k1", @@ -5314,7 +5330,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "bytes 0.5.4", "derive_more 0.99.6", @@ -5341,7 +5357,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -5357,7 +5373,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "impl-trait-for-tuples", "sc-chain-spec-derive", @@ -5373,7 +5389,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.12", @@ -5384,7 +5400,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "ansi_term 0.12.1", "app_dirs", @@ -5426,7 +5442,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "derive_more 0.99.6", "fnv", @@ -5462,7 +5478,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "blake2-rfc", "hash-db", @@ -5491,7 +5507,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "sc-client-api", "sp-blockchain", @@ -5502,7 +5518,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "derive_more 0.99.6", "fork-tree", @@ -5544,7 +5560,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "derive_more 0.99.6", "futures 0.3.5", @@ -5554,6 +5570,7 @@ dependencies = [ "sc-consensus-babe", "sc-consensus-epochs", "sc-keystore", + "sc-rpc-api", "serde", "sp-api", "sp-blockchain", @@ -5566,7 +5583,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "fork-tree", "parity-scale-codec", @@ -5579,7 +5596,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -5601,7 +5618,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "log 0.4.8", "sc-client-api", @@ -5615,7 +5632,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "derive_more 0.99.6", "lazy_static", @@ -5643,7 +5660,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "derive_more 0.99.6", "log 0.4.8", @@ -5660,7 +5677,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "log 0.4.8", "parity-scale-codec", @@ -5675,7 +5692,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "cranelift-codegen", "cranelift-wasm", @@ -5696,7 +5713,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "assert_matches", "derive_more 0.99.6", @@ -5733,7 +5750,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "derive_more 0.99.6", "finality-grandpa", @@ -5750,7 +5767,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "ansi_term 0.12.1", "futures 0.3.5", @@ -5767,7 +5784,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "derive_more 0.99.6", "hex", @@ -5782,7 +5799,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "bitflags", "bs58", @@ -5834,7 +5851,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -5849,7 +5866,7 @@ dependencies = [ [[package]] name = "sc-network-test" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "env_logger", "futures 0.3.5", @@ -5876,7 +5893,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "bytes 0.5.4", "fnv", @@ -5903,7 +5920,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "futures 0.3.5", "libp2p", @@ -5916,7 +5933,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "log 0.4.8", "substrate-prometheus-endpoint", @@ -5925,7 +5942,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "futures 0.3.5", "hash-db", @@ -5957,7 +5974,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "derive_more 0.99.6", "futures 0.3.5", @@ -5981,7 +5998,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "jsonrpc-core", "jsonrpc-http-server", @@ -5996,7 +6013,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "derive_more 0.99.6", "exit-future", @@ -6054,7 +6071,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "log 0.4.8", "parity-scale-codec", @@ -6068,7 +6085,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "bytes 0.5.4", "futures 0.3.5", @@ -6090,7 +6107,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "erased-serde", "log 0.4.8", @@ -6105,7 +6122,7 @@ dependencies = [ [[package]] name = "sc-transaction-graph" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "derive_more 0.99.6", "futures 0.3.5", @@ -6125,7 +6142,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "derive_more 0.99.6", "futures 0.3.5", @@ -6522,7 +6539,7 @@ dependencies = [ [[package]] name = "sp-allocator" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "derive_more 0.99.6", "log 0.4.8", @@ -6534,7 +6551,7 @@ dependencies = [ [[package]] name = "sp-api" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "hash-db", "parity-scale-codec", @@ -6549,7 +6566,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "blake2-rfc", "proc-macro-crate", @@ -6561,7 +6578,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "parity-scale-codec", "serde", @@ -6573,7 +6590,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "integer-sqrt", "num-traits 0.2.11", @@ -6587,7 +6604,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "parity-scale-codec", "sp-api", @@ -6599,7 +6616,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "parity-scale-codec", "sp-inherents", @@ -6610,7 +6627,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "parity-scale-codec", "sp-api", @@ -6622,7 +6639,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "derive_more 0.99.6", "log 0.4.8", @@ -6638,7 +6655,7 @@ dependencies = [ [[package]] name = "sp-chain-spec" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "serde", "serde_json", @@ -6647,7 +6664,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "derive_more 0.99.6", "futures 0.3.5", @@ -6670,7 +6687,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "parity-scale-codec", "sp-api", @@ -6684,7 +6701,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "merlin", "parity-scale-codec", @@ -6701,7 +6718,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -6713,7 +6730,7 @@ dependencies = [ [[package]] name = "sp-core" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "base58", "blake2-rfc", @@ -6755,7 +6772,7 @@ dependencies = [ [[package]] name = "sp-database" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "kvdb", "parking_lot 0.10.2", @@ -6764,7 +6781,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "proc-macro2 1.0.12", "quote 1.0.5", @@ -6774,7 +6791,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "environmental", "parity-scale-codec", @@ -6785,7 +6802,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "finality-grandpa", "log 0.4.8", @@ -6801,7 +6818,7 @@ dependencies = [ [[package]] name = "sp-finality-tracker" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "parity-scale-codec", "sp-inherents", @@ -6811,7 +6828,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "derive_more 0.99.6", "parity-scale-codec", @@ -6823,7 +6840,7 @@ dependencies = [ [[package]] name = "sp-io" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "futures 0.3.5", "hash-db", @@ -6843,7 +6860,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "lazy_static", "sp-core", @@ -6854,7 +6871,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "sp-api", "sp-core", @@ -6864,7 +6881,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "backtrace", "log 0.4.8", @@ -6873,7 +6890,7 @@ dependencies = [ [[package]] name = "sp-phragmen" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "parity-scale-codec", "serde", @@ -6885,7 +6902,7 @@ dependencies = [ [[package]] name = "sp-phragmen-compact" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.12", @@ -6896,7 +6913,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "serde", "sp-core", @@ -6905,7 +6922,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "hash256-std-hasher", "impl-trait-for-tuples", @@ -6926,7 +6943,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "parity-scale-codec", "primitive-types", @@ -6941,7 +6958,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "Inflector", "proc-macro-crate", @@ -6953,7 +6970,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "serde", "serde_json", @@ -6962,7 +6979,7 @@ dependencies = [ [[package]] name = "sp-session" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "parity-scale-codec", "sp-api", @@ -6975,7 +6992,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "parity-scale-codec", "sp-runtime", @@ -6985,7 +7002,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "hash-db", "log 0.4.8", @@ -7004,12 +7021,12 @@ dependencies = [ [[package]] name = "sp-std" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" [[package]] name = "sp-storage" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "impl-serde 0.2.3", "ref-cast", @@ -7021,7 +7038,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -7035,7 +7052,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "tracing", ] @@ -7043,7 +7060,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "derive_more 0.99.6", "futures 0.3.5", @@ -7058,7 +7075,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "hash-db", "memory-db", @@ -7072,7 +7089,7 @@ dependencies = [ [[package]] name = "sp-utils" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "futures 0.3.5", "futures-core", @@ -7083,7 +7100,7 @@ dependencies = [ [[package]] name = "sp-version" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "impl-serde 0.2.3", "parity-scale-codec", @@ -7095,7 +7112,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -7223,7 +7240,7 @@ dependencies = [ [[package]] name = "substrate-browser-utils" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "chrono", "clear_on_drop", @@ -7250,7 +7267,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "platforms", ] @@ -7258,7 +7275,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.5", @@ -7279,7 +7296,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.8.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "async-std", "derive_more 0.99.6", @@ -7293,7 +7310,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "futures 0.3.5", "hash-db", @@ -7314,7 +7331,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "cfg-if", "frame-executive", @@ -7354,7 +7371,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime-client" version = "2.0.0-dev" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" dependencies = [ "futures 0.3.5", "parity-scale-codec", @@ -7374,7 +7391,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder-runner" version = "1.0.6" -source = "git+https://github.com/paritytech/substrate#292a8a595d75405ce84e9278bda23839f744401a" +source = "git+https://github.com/paritytech/substrate#903693105a39f4a88ed99d99a4462616ed059968" [[package]] name = "substrate-wasm-builder-runner" @@ -8500,6 +8517,7 @@ dependencies = [ "frame-executive", "frame-support", "frame-system", + "frame-system-benchmarking", "frame-system-rpc-runtime-api", "hex-literal", "libsecp256k1", diff --git a/runtime/kusama/Cargo.toml b/runtime/kusama/Cargo.toml index 24dc4a4d1f78..9f6bec67745f 100644 --- a/runtime/kusama/Cargo.toml +++ b/runtime/kusama/Cargo.toml @@ -64,6 +64,7 @@ utility = { package = "pallet-utility", git = "https://github.com/paritytech/sub vesting = { package = "pallet-vesting", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } @@ -145,6 +146,7 @@ runtime-benchmarks = [ "runtime-common/runtime-benchmarks", "frame-benchmarking", "frame-support/runtime-benchmarks", + "frame-system-benchmarking", "system/runtime-benchmarks", "sp-runtime/runtime-benchmarks", "balances/runtime-benchmarks", diff --git a/runtime/polkadot/Cargo.toml b/runtime/polkadot/Cargo.toml index 7fc9d2983492..0e8864f5347d 100644 --- a/runtime/polkadot/Cargo.toml +++ b/runtime/polkadot/Cargo.toml @@ -61,6 +61,7 @@ sudo = { package = "pallet-sudo", git = "https://github.com/paritytech/substrate vesting = { package = "pallet-vesting", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } @@ -139,6 +140,7 @@ runtime-benchmarks = [ "runtime-common/runtime-benchmarks", "frame-benchmarking", "frame-support/runtime-benchmarks", + "frame-system-benchmarking", "system/runtime-benchmarks", "sp-runtime/runtime-benchmarks", "balances/runtime-benchmarks", diff --git a/runtime/westend/Cargo.toml b/runtime/westend/Cargo.toml index c1097d68fe43..f7319b6ecd4e 100644 --- a/runtime/westend/Cargo.toml +++ b/runtime/westend/Cargo.toml @@ -64,6 +64,7 @@ utility = { package = "pallet-utility", git = "https://github.com/paritytech/sub vesting = { package = "pallet-vesting", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } @@ -148,6 +149,7 @@ runtime-benchmarks = [ "runtime-common/runtime-benchmarks", "frame-benchmarking", "frame-support/runtime-benchmarks", + "frame-system-benchmarking", "system/runtime-benchmarks", "sp-runtime/runtime-benchmarks", "balances/runtime-benchmarks",