pull/5370/head
yann300 3 years ago committed by joseph izang
parent dc598fe9bb
commit dc29857623
  1. 5
      libs/remix-debug/src/code/codeManager.ts

@ -148,8 +148,8 @@ export class CodeManager {
private async retrieveIndexAndTrigger (codeMananger, address, step, code) {
let result
let next
let returnInstructionIndexes = []
let outOfGasInstructionIndexes = []
const returnInstructionIndexes = []
const outOfGasInstructionIndexes = []
try {
result = codeMananger.getInstructionIndex(address, step)
@ -170,7 +170,6 @@ export class CodeManager {
outOfGasInstructionIndexes.push({ instructionIndex: this.getInstructionIndex(address, value.index), address })
}
}
} catch (error) {
return console.log(error)
}

Loading…
Cancel
Save