From 47004f66a55f58c1d8dbe70eabfd5fd84b9d7635 Mon Sep 17 00:00:00 2001 From: Jan Bujak Date: Thu, 13 Oct 2022 09:04:19 +0000 Subject: [PATCH] Enable the `wasmtime`-based WASM executor by default --- client/cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/cli/Cargo.toml b/client/cli/Cargo.toml index 37a8fd2e0b64d..66742e14789ef 100644 --- a/client/cli/Cargo.toml +++ b/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"]