diff --git a/src/app/debugger/debuggerUI/VmDebugger.js b/src/app/debugger/debuggerUI/VmDebugger.js index c492b934ac..de8f51ca95 100644 --- a/src/app/debugger/debuggerUI/VmDebugger.js +++ b/src/app/debugger/debuggerUI/VmDebugger.js @@ -117,7 +117,7 @@ function VmDebugger (_parentUI, _traceManager, _codeManager, _solidityProxy, _ca if (index < 0) return if (_parentUI.currentStepIndex !== index) return - _traceManager.getMemoryAt(index, function (error, callstack) { + _traceManager.getCallStackAt(index, function (error, callstack) { if (error) { console.log(error) self.callstackPanel.update({}) @@ -132,7 +132,7 @@ function VmDebugger (_parentUI, _traceManager, _codeManager, _solidityProxy, _ca if (index < 0) return if (_parentUI.currentStepIndex !== index) return - _traceManager.getMemoryAt(index, function (error, stack) { + _traceManager.getStackAt(index, function (error, stack) { if (error) { console.log(error) self.stackPanel.update({})