Skip to content
This repository has been archived by the owner on Jan 5, 2019. It is now read-only.

Commit

Permalink
Turn wabt off by default
Browse files Browse the repository at this point in the history
  • Loading branch information
axic committed Feb 20, 2018
1 parent c8c5fcb commit 431e0f5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ exports.evm2wasm = function (evmCode, opts = {
'stackTrace': false,
'useAsyncAPI': false,
'inlineOps': true,
'wabt': false,
'testName': 'temp'
}) {
const wast = exports.evm2wast(evmCode, opts)
Expand Down
2 changes: 1 addition & 1 deletion tests/codeRunner.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ tape('testing transcompiler', async t => {
buffer: compiled
} = await evm2wasm.evm2wasm(code, {
inlineOps: true,
wabt: true
wabt: false
})

const startingState = await state.get(accountAddress)
Expand Down
2 changes: 1 addition & 1 deletion tests/runVmTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ async function runner (testName, testData, t) {
useAsyncAPI: true,
testName: testName,
inlineOps: true,
wabt: true
wabt: false
})

const environment = setupEnviroment(testData)
Expand Down

0 comments on commit 431e0f5

Please sign in to comment.