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

linting fix

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