Skip to content

Commit

Permalink
Merge pull request #154 from ewasm/evm2wasm
Browse files Browse the repository at this point in the history
 Fix ifdef for evm2wasm.js EVM-C option
  • Loading branch information
axic authored Mar 14, 2018
2 parents 81bc711 + f41cad6 commit f045242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hera.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ int evm_set_option(
hera->fallback = strcmp(value, "true") == 0;
return 1;
}
#if EVM2WASM
#if HERA_EVM2WASM
if (strcmp(name, "evm2wasm.js") == 0) {
hera->use_evm2wasm_js = strcmp(value, "true") == 0;
return 1;
Expand Down

0 comments on commit f045242

Please sign in to comment.