return if no like / column

dontThrowIfNoSourceLocation
yann300 4 years ago
parent cfd41cb939
commit e81e35b1a4
  1. 1
      libs/remix-ui/debugger-ui/src/lib/debugger-ui.tsx

@ -81,6 +81,7 @@ export const DebuggerUI = ({ debuggerModule }) => {
})
debuggerInstance.event.register('newSourceLocation', async (lineColumnPos, rawLocation, generatedSources) => {
if (!lineColumnPos) return
const contracts = await fetchContractAndCompile(
currentReceipt.contractAddress || currentReceipt.to,
currentReceipt)

Loading…
Cancel
Save