remove unneded assignment
This commit is contained in:
parent
9b368bc1b3
commit
68e6782f49
|
@ -1,5 +1,9 @@
|
||||||
let async = require('async');
|
let async = require('async');
|
||||||
|
|
||||||
|
// TODO: remove contractsManager dependency
|
||||||
|
// * use events
|
||||||
|
// * in the engine use the instance instead
|
||||||
|
|
||||||
class DeployManager {
|
class DeployManager {
|
||||||
constructor(options) {
|
constructor(options) {
|
||||||
const self = this;
|
const self = this;
|
||||||
|
@ -10,7 +14,6 @@ class DeployManager {
|
||||||
this.events = options.events;
|
this.events = options.events;
|
||||||
this.plugins = options.plugins;
|
this.plugins = options.plugins;
|
||||||
this.blockchain = options.blockchain;
|
this.blockchain = options.blockchain;
|
||||||
this.chainConfig = (options.trackContracts !== false) ? this.config.chainTracker : false;
|
|
||||||
this.contractsManager = options.contractsManager;
|
this.contractsManager = options.contractsManager;
|
||||||
this.gasLimit = false;
|
this.gasLimit = false;
|
||||||
this.fatalErrors = false;
|
this.fatalErrors = false;
|
||||||
|
|
Loading…
Reference in New Issue