rollback isCallToPreCompiledContract

pull/5370/head
yann300 4 years ago
parent 38d97dd2cd
commit 6669eb715b
  1. 2
      libs/remix-debug/src/trace/traceHelper.ts

@ -54,7 +54,7 @@ export function isCallToPrecompiledContract (index, trace) {
// if stack empty => this is not a precompiled contract // if stack empty => this is not a precompiled contract
const step = trace[index] const step = trace[index]
if (this.isCallInstruction(step)) { if (this.isCallInstruction(step)) {
return index + 1 < trace.length && (trace[index].depth === trace[index + 1].depth) return index + 1 < trace.length && trace[index + 1].stack.length !== 0
} }
return false return false
} }

Loading…
Cancel
Save