remove unneded assignment

This commit is contained in:
Iuri Matias 2018-05-30 06:38:35 -04:00
parent 9b368bc1b3
commit 68e6782f49
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,9 @@
let async = require('async');
// TODO: remove contractsManager dependency
// * use events
// * in the engine use the instance instead
class DeployManager {
constructor(options) {
const self = this;
@ -10,7 +14,6 @@ class DeployManager {
this.events = options.events;
this.plugins = options.plugins;
this.blockchain = options.blockchain;
this.chainConfig = (options.trackContracts !== false) ? this.config.chainTracker : false;
this.contractsManager = options.contractsManager;
this.gasLimit = false;
this.fatalErrors = false;