From 00d55c7c80bc07e1f8a5cff7097546b234bd52ac Mon Sep 17 00:00:00 2001 From: yann300 Date: Wed, 23 Dec 2020 14:58:12 +0100 Subject: [PATCH] use absolute path --- apps/remix-ide/src/app/tabs/debugger-tab.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/remix-ide/src/app/tabs/debugger-tab.js b/apps/remix-ide/src/app/tabs/debugger-tab.js index f962881370..88fe682d84 100644 --- a/apps/remix-ide/src/app/tabs/debugger-tab.js +++ b/apps/remix-ide/src/app/tabs/debugger-tab.js @@ -141,7 +141,7 @@ class DebuggerTab extends ViewPlugin { fetchContractAndCompile (address, receipt) { const target = (address && remixDebug.traceHelper.isContractCreation(address)) ? receipt.contractAddress : address - return this.call('fetchAndCompile', 'resolve', target || receipt.contractAddress || receipt.to, '.debug', this.blockchain.web3()) + return this.call('fetchAndCompile', 'resolve', target || receipt.contractAddress || receipt.to, 'browser/.debug', this.blockchain.web3()) } // debugger () {