Fix for browser solidity

pull/7/head
yann300 8 years ago
parent ee63b0a470
commit 9a6c90b2f0
  1. 3
      src/ui/Ethdebugger.js

@ -30,7 +30,8 @@ function Ethdebugger () {
this.codeManager = new CodeManager(this.traceManager)
this.solidityProxy = new SolidityProxy(this.traceManager, this.codeManager)
var callTree = new InternalCallTree(this.event, this.traceManager, this.solidityProxy, this.codeManager, { includeLocalVariables: true })
var callTree = new InternalCallTree(this.event, this.traceManager, this.solidityProxy, this.codeManager, { includeLocalsVariables: true })
this.callTree = callTree // TODO: currently used by browser solidity, we should improve the API
this.event.register('indexChanged', this, function (index) {
self.codeManager.resolveStep(index, self.tx)

Loading…
Cancel
Save