Commit 5ef253a8 authored by Iuri Matias's avatar Iuri Matias

remove callback from extractLocalsAt

parent 8f6b5100
......@@ -71,8 +71,8 @@ Ethdebugger.prototype.setBreakpointManager = function (breakpointManager) {
}
/* decode locals */
Ethdebugger.prototype.extractLocalsAt = function (step, callback) {
callback(null, this.callTree.findScope(step))
Ethdebugger.prototype.extractLocalsAt = function (step) {
return this.callTree.findScope(step)
}
Ethdebugger.prototype.decodeLocalsAt = function (step, sourceLocation, callback) {
......
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