Commit 89b76c66 authored by aniket-engg's avatar aniket-engg Committed by Aniket

linting fix

parent 170d9040
......@@ -37,8 +37,8 @@ TraceAnalyser.prototype.buildReturnValues = function (index, step) {
const memory = this.trace[this.traceCache.memoryChanges[this.traceCache.memoryChanges.length - 1]].memory
const noOfReturnParams = size / 64
const memoryInString = memory.join('')
let returnParamsObj = [];
for(let i = 0; i < noOfReturnParams; i++){
let returnParamsObj = []
for (let i = 0; i < noOfReturnParams; i++) {
returnParamsObj.push('0x' + memoryInString.substring(offset, offset + 64))
offset += 64
}
......
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