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

Retire wabt #174

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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