remove unneded assignment
This commit is contained in:
parent
9b368bc1b3
commit
68e6782f49
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue