From 9b368bc1b39efcc8c3d7d3d70e8d7052ab9f795a Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Tue, 29 May 2018 17:25:45 -0400 Subject: [PATCH] remove unneeded assignment --- lib/contracts/code_generator.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/contracts/code_generator.js b/lib/contracts/code_generator.js index a00e61121..90231e8ce 100644 --- a/lib/contracts/code_generator.js +++ b/lib/contracts/code_generator.js @@ -28,8 +28,6 @@ class CodeGenerator { this.communicationConfig = options.communicationConfig || {}; this.namesystemConfig = options.namesystemConfig || {}; this.env = options.env || 'development'; - // TODO: this should also be removed and use events instead - this.contractsManager = options.contractsManager; this.plugins = options.plugins; this.events = options.events; }