Commit d8bb61de authored by Iuri Matias's avatar Iuri Matias Committed by yann300

fix calls to tracemanager

parent 46cc1235
......@@ -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({})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment