Pass through runtime-benchmark feature (#6110)

This commit is contained in:
Alexander Theißen
2022-10-05 15:15:07 +02:00
committed by GitHub
parent 42c043d7f4
commit 4aea71a95f
2 changed files with 8 additions and 1 deletions
+5 -1
View File
@@ -56,7 +56,11 @@ cli = [
"polkadot-client",
"polkadot-node-core-pvf",
]
runtime-benchmarks = ["service/runtime-benchmarks", "polkadot-node-metrics/runtime-benchmarks"]
runtime-benchmarks = [
"service/runtime-benchmarks",
"polkadot-node-metrics/runtime-benchmarks",
"polkadot-performance-test?/runtime-benchmarks"
]
trie-memory-tracker = ["sp-trie/memory-tracker"]
full-node = ["service/full-node"]
try-runtime = ["service/try-runtime"]
@@ -19,3 +19,6 @@ kusama-runtime = { path = "../../../runtime/kusama" }
[[bin]]
name = "gen-ref-constants"
path = "src/gen_ref_constants.rs"
[features]
runtime-benchmarks = ["kusama-runtime/runtime-benchmarks"]