pull/5370/head
yann300 4 years ago
parent 0fd5334f47
commit c0bd388305
  1. 5
      libs/remix-debug/src/code/codeManager.ts

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

Loading…
Cancel
Save