From 1b3f211efac7b09c592f8b4e0d5fe27570292fbe Mon Sep 17 00:00:00 2001 From: Koute <koute@users.noreply.github.com> Date: Thu, 13 Oct 2022 19:31:00 +0900 Subject: [PATCH] Enable the `wasmtime`-based WASM executor by default (#12486) --- substrate/client/cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substrate/client/cli/Cargo.toml b/substrate/client/cli/Cargo.toml index 37a8fd2e0b6..66742e14789 100644 --- a/substrate/client/cli/Cargo.toml +++ b/substrate/client/cli/Cargo.toml @@ -51,6 +51,6 @@ sp-version = { version = "5.0.0", path = "../../primitives/version" } tempfile = "3.1.0" [features] -default = ["rocksdb"] +default = ["rocksdb", "wasmtime"] rocksdb = ["sc-client-db/rocksdb"] wasmtime = ["sc-service/wasmtime"] -- GitLab