polkadot-test-service: Enable wasmtime feature (#4762)

We use the `Compiled` wasm execution and for that the `wasmtime` needs
to be enabled.
This commit is contained in:
Bastian Köcher
2022-01-21 16:18:21 +01:00
committed by GitHub
parent 3cb2d62665
commit 8756678a83
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -48,7 +48,7 @@ sc-executor = { git = "https://github.com/paritytech/substrate", branch = "maste
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "wasmtime" ] }
sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
@@ -64,4 +64,4 @@ substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch
tokio = { version = "1.15", features = ["macros"] }
[features]
runtime-metrics=["polkadot-test-runtime/runtime-metrics"]
runtime-metrics=["polkadot-test-runtime/runtime-metrics"]