From 4d2ed9c97226aabb65771817dcaa9508402e4a85 Mon Sep 17 00:00:00 2001 From: Dmitry Sinyavin Date: Mon, 3 Apr 2023 20:05:18 +0100 Subject: [PATCH] Companion for paritytech/substrate#13811 --- node/core/pvf/src/executor_intf.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/node/core/pvf/src/executor_intf.rs b/node/core/pvf/src/executor_intf.rs index af552077bc43..069f4ad54eff 100644 --- a/node/core/pvf/src/executor_intf.rs +++ b/node/core/pvf/src/executor_intf.rs @@ -86,6 +86,10 @@ const DEFAULT_CONFIG: Config = Config { // On the one hand, it simplifies the code, on the other, however, slows down compile times // for execute requests. This behavior may change in future. parallel_compilation: false, + wasm_reference_types: false, + wasm_simd: false, + wasm_bulk_memory: false, + wasm_multi_value: false, }, };