diff --git a/runtime/kusama/Cargo.toml b/runtime/kusama/Cargo.toml index 9f6bec67745f..8d87438bd1a6 100644 --- a/runtime/kusama/Cargo.toml +++ b/runtime/kusama/Cargo.toml @@ -155,6 +155,7 @@ runtime-benchmarks = [ "elections-phragmen/runtime-benchmarks", "identity/runtime-benchmarks", "im-online/runtime-benchmarks", + "scheduler/runtime-benchmarks", "society/runtime-benchmarks", "staking/runtime-benchmarks", "timestamp/runtime-benchmarks", diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 5179f1b37fbe..3b024635cb3d 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -1095,9 +1095,11 @@ sp_api::impl_runtime_apis! { add_benchmark!(params, batches, b"balances", Balances); add_benchmark!(params, batches, b"collective", Council); add_benchmark!(params, batches, b"democracy", Democracy); + add_benchmark!(params, batches, b"elections-phragmen", ElectionsPhragmen); add_benchmark!(params, batches, b"identity", Identity); add_benchmark!(params, batches, b"im-online", ImOnline); add_benchmark!(params, batches, b"offences", OffencesBench::); + add_benchmark!(params, batches, b"scheduler", Scheduler); add_benchmark!(params, batches, b"session", SessionBench::); add_benchmark!(params, batches, b"staking", Staking); add_benchmark!(params, batches, b"system", SystemBench::); diff --git a/runtime/polkadot/Cargo.toml b/runtime/polkadot/Cargo.toml index 0e8864f5347d..8772e14c68fe 100644 --- a/runtime/polkadot/Cargo.toml +++ b/runtime/polkadot/Cargo.toml @@ -148,6 +148,7 @@ runtime-benchmarks = [ "democracy/runtime-benchmarks", "elections-phragmen/runtime-benchmarks", "im-online/runtime-benchmarks", + "scheduler/runtime-benchmarks", "staking/runtime-benchmarks", "timestamp/runtime-benchmarks", "treasury/runtime-benchmarks", diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 09f8a3f31edc..54945883152b 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -1012,8 +1012,10 @@ sp_api::impl_runtime_apis! { add_benchmark!(params, batches, b"balances", Balances); add_benchmark!(params, batches, b"collective", Council); add_benchmark!(params, batches, b"democracy", Democracy); + add_benchmark!(params, batches, b"elections-phragmen", ElectionsPhragmen); add_benchmark!(params, batches, b"im-online", ImOnline); add_benchmark!(params, batches, b"offences", OffencesBench::); + add_benchmark!(params, batches, b"scheduler", Scheduler); add_benchmark!(params, batches, b"session", SessionBench::); add_benchmark!(params, batches, b"staking", Staking); add_benchmark!(params, batches, b"system", SystemBench::); diff --git a/runtime/westend/Cargo.toml b/runtime/westend/Cargo.toml index f7319b6ecd4e..cab3b208861c 100644 --- a/runtime/westend/Cargo.toml +++ b/runtime/westend/Cargo.toml @@ -158,6 +158,7 @@ runtime-benchmarks = [ "elections-phragmen/runtime-benchmarks", "identity/runtime-benchmarks", "im-online/runtime-benchmarks", + "scheduler/runtime-benchmarks", "society/runtime-benchmarks", "staking/runtime-benchmarks", "timestamp/runtime-benchmarks", diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 58e65b18ad4f..c33c24432426 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -890,6 +890,7 @@ sp_api::impl_runtime_apis! { add_benchmark!(params, batches, b"identity", Identity); add_benchmark!(params, batches, b"im-online", ImOnline); add_benchmark!(params, batches, b"offences", OffencesBench::); + add_benchmark!(params, batches, b"scheduler", Scheduler); add_benchmark!(params, batches, b"session", SessionBench::); add_benchmark!(params, batches, b"staking", Staking); add_benchmark!(params, batches, b"system", SystemBench::);