remove unneeded loop

pull/1346/head
yann300 3 years ago
parent 3d2db3b6b5
commit e16b071108
  1. 6
      libs/remix-debug/src/code/codeManager.ts

@ -156,20 +156,22 @@ export class CodeManager {
next = codeMananger.getInstructionIndex(address, step + 1)
let values = this.traceManager.getAllStopIndexes()
values = values.filter((value) => value.address === address)
if (values) {
for (const value of values) {
if (value.address === address) {
returnInstructionIndexes.push({ instructionIndex: this.getInstructionIndex(address, value.index), address })
}
}
}
values = this.traceManager.getAllOutofGasIndexes()
values = values.filter((value) => value.address === address)
if (values) {
for (const value of values) {
if (value.address === address) {
outOfGasInstructionIndexes.push({ instructionIndex: this.getInstructionIndex(address, value.index), address })
}
}
}
} catch (error) {
return console.log(error)
}

Loading…
Cancel
Save