Commit 31ad4d06 authored by yann300's avatar yann300

fix failing test

parent fb84fed8
......@@ -5,6 +5,7 @@ var localDecoder = require('../../../babelify-src/solidity/localDecoder')
Decode local variable
*/
function decodeLocal (st, index, traceManager, callTree, verifier) {
try {
traceManager.waterfall([
traceManager.getStackAt,
traceManager.getMemoryAt],
......@@ -17,6 +18,9 @@ function decodeLocal (st, index, traceManager, callTree, verifier) {
st.fail(error)
}
})
} catch (e) {
st.fail(e.message)
}
}
module.exports = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment