Commit 508f47ec authored by Iuri Matias's avatar Iuri Matias Committed by yann300

remove unused params

parent 83ef8df7
...@@ -38,7 +38,7 @@ function VmDebugger (_parentUI, _traceManager, _codeManager, _solidityProxy, _ca ...@@ -38,7 +38,7 @@ function VmDebugger (_parentUI, _traceManager, _codeManager, _solidityProxy, _ca
self.asmCode.changed([], '', -1) self.asmCode.changed([], '', -1)
}) })
this.calldataPanel = new CalldataPanel(_parentUI, _traceManager) this.calldataPanel = new CalldataPanel()
_parentUI.event.register('indexChanged', this, function (index) { _parentUI.event.register('indexChanged', this, function (index) {
if (index < 0) return if (index < 0) return
if (_parentUI.currentStepIndex !== index) return if (_parentUI.currentStepIndex !== index) return
......
...@@ -2,9 +2,7 @@ ...@@ -2,9 +2,7 @@
var DropdownPanel = require('./DropdownPanel') var DropdownPanel = require('./DropdownPanel')
var yo = require('yo-yo') var yo = require('yo-yo')
function CalldataPanel (_parentUI, _traceManager) { function CalldataPanel () {
this._parentUI = _parentUI
this.traceManager = _traceManager
this.basicPanel = new DropdownPanel('Call Data', {json: true}) this.basicPanel = new DropdownPanel('Call Data', {json: true})
} }
......
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