From d69975d11a1d451fc87bda69e73e23daa03fb2df Mon Sep 17 00:00:00 2001 From: yann300 Date: Thu, 2 Aug 2018 13:55:33 +0200 Subject: [PATCH] Update Ethdebugger.js --- remix-debug/src/Ethdebugger.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remix-debug/src/Ethdebugger.js b/remix-debug/src/Ethdebugger.js index 0b63056a75..d5fcd8afbb 100644 --- a/remix-debug/src/Ethdebugger.js +++ b/remix-debug/src/Ethdebugger.js @@ -83,7 +83,7 @@ Ethdebugger.prototype.sourceLocationFromVMTraceIndex = function (address, stepIn } Ethdebugger.prototype.sourceLocationFromInstructionIndex = function (address, instIndex, callback) { - this.debugger.callTree.sourceLocationTracker.getSourceLocationFromInstructionIndex(address, instIndex, this.solidityProxy.contracts, function (error, rawLocation) { + this.callTree.sourceLocationTracker.getSourceLocationFromInstructionIndex(address, instIndex, this.solidityProxy.contracts, function (error, rawLocation) { callback(error, rawLocation) }) }