fix(compiler): fix compiler being fired twice

This commit is contained in:
Jonathan Rainville 2018-12-11 11:23:25 -05:00
parent 6e4a612fef
commit ebd827bc55
2 changed files with 0 additions and 2 deletions

View File

@ -220,7 +220,6 @@ class Engine {
let self = this;
this.setupCompilerAndContractsManagerService(options);
this.registerModule('compiler', {plugins: self.plugins, disableOptimizations: options.disableOptimizations});
this.registerModule('solidity', {ipc: self.ipc, useDashboard: this.useDashboard});
this.registerModule('vyper');
this.registerModule('profiler', {plugins: this.plugins});

View File

@ -103,7 +103,6 @@ class TestRunner {
}
], (err, results) => {
if (err) {
self.logger.error(err);
return cb(err);
}
let totalFailures = results.reduce((acc, result) => acc + result.failures, 0);