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

cleanup

parent 2f3ee901
......@@ -214,32 +214,6 @@ function VmDebugger (_parentUI, _traceManager, _codeManager, _solidityProxy, _ca
self.stepDetail.updateField('vm trace step', index)
})
// _parentUI.event.register('indexChanged', this, function (index) {
// if (index < 0) return
// self.stepDetail.updateField('vm trace step', index)
// // _traceManager.getCurrentStep(index, function (error, step) {
// // self.stepDetail.updateField('execution step', (error ? '-' : step))
// // })
// // _traceManager.getMemExpand(index, function (error, addmem) {
// // self.stepDetail.updateField('add memory', (error ? '-' : addmem))
// // })
// // _traceManager.getStepCost(index, function (error, gas) {
// // self.stepDetail.updateField('gas', (error ? '-' : gas))
// // })
// // _traceManager.getCurrentCalledAddressAt(index, function (error, address) {
// // self.stepDetail.updateField('loaded address', (error ? '-' : address))
// // })
// // _traceManager.getRemainingGas(index, function (error, remaingas) {
// // self.stepDetail.updateField('remaining gas', (error ? '-' : remaingas))
// // })
// })
this.debuggerSolidityState = new DebuggerSolidityState(_parentUI, _traceManager, _codeManager, _solidityProxy)
this.solidityState = new SolidityState()
this.debuggerSolidityState.init()
......
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