remove unused parameter
This commit is contained in:
parent
d5278b41de
commit
a428928b53
|
@ -11,7 +11,6 @@ class Dashboard {
|
|||
this.plugins = options.plugins;
|
||||
this.version = options.version;
|
||||
this.env = options.env;
|
||||
this.contractsConfig = options.contractsConfig;
|
||||
|
||||
this.events.on('firstDeploymentDone', this.checkWindowSize.bind(this));
|
||||
this.events.on('outputDone', this.checkWindowSize.bind(this));
|
||||
|
@ -34,7 +33,6 @@ class Dashboard {
|
|||
events: self.events,
|
||||
plugins: self.plugins,
|
||||
version: self.version,
|
||||
contractsConfig: self.contractsConfig
|
||||
});
|
||||
callback();
|
||||
},
|
||||
|
|
|
@ -97,8 +97,7 @@ class Embark {
|
|||
logger: engine.logger,
|
||||
plugins: engine.plugins,
|
||||
version: self.version,
|
||||
env: engine.env,
|
||||
contractsConfig: engine.config.contractsConfig
|
||||
env: engine.env
|
||||
});
|
||||
dashboard.start(function () {
|
||||
engine.logger.info(__('dashboard start'));
|
||||
|
|
Loading…
Reference in New Issue