From 82bbf927321175913e97f8e5274848a66b83027e Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Tue, 6 Feb 2018 14:43:34 -0500 Subject: [PATCH] remove unnecessary parameters from runTab --- src/app/panels/righthand-panel.js | 2 +- src/app/tabs/run-tab.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/panels/righthand-panel.js b/src/app/panels/righthand-panel.js index ccea3687f6..ded2ca6c82 100644 --- a/src/app/panels/righthand-panel.js +++ b/src/app/panels/righthand-panel.js @@ -151,7 +151,7 @@ function RighthandPanel (appAPI, events, opts) { events.rhp = self.event this._view.tabbedMenu.addTab('Compile', 'compileView', compileTab(optionViews, appAPI, events, opts)) - this._view.tabbedMenu.addTab('Run', 'runView', runTab(optionViews, appAPI, events, opts)) + this._view.tabbedMenu.addTab('Run', 'runView', runTab(optionViews, appAPI, events)) this._view.tabbedMenu.addTab('Settings', 'settingsView', settingsTab(optionViews, appAPI, events, opts)) this._view.tabbedMenu.addTab('Analysis', 'staticanalysisView', analysisTab(optionViews)) this._view.tabbedMenu.addTab('Debugger', 'debugView', debuggerTab(optionViews)) diff --git a/src/app/tabs/run-tab.js b/src/app/tabs/run-tab.js index 33ba182cdc..c83e8f5743 100644 --- a/src/app/tabs/run-tab.js +++ b/src/app/tabs/run-tab.js @@ -20,7 +20,7 @@ var noInstancesText = yo`
0 contract Instance var pendingTxsText = yo`` -function runTab (container, appAPI, appEvents, opts) { +function runTab (container, appAPI, appEvents) { var events = new EventManager() var clearInstanceElement = yo``