From e25a660a11bc454e3d2e8854c8234bd465a36bf7 Mon Sep 17 00:00:00 2001 From: "Denis S. Soldatov aka General-Beck" Date: Mon, 19 Mar 2018 18:42:51 +0300 Subject: [PATCH] fix wasmi x32 builds (#8155) * fix wasmi x32 builds * Update Cargo.toml --- ethcore/wasm/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethcore/wasm/Cargo.toml b/ethcore/wasm/Cargo.toml index 38ec7f268..9d1de4a95 100644 --- a/ethcore/wasm/Cargo.toml +++ b/ethcore/wasm/Cargo.toml @@ -12,4 +12,4 @@ libc = "0.2" wasm-utils = { git = "https://github.com/paritytech/wasm-utils" } vm = { path = "../vm" } ethcore-logger = { path = "../../logger" } -wasmi = { git = "https://github.com/paritytech/wasmi" } \ No newline at end of file +wasmi = { git = "https://github.com/paritytech/wasmi", features = ["32bit_opt_in"] }