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