From a03be15c4a56bc3ef86e0eff5c69969ddf1d3408 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Sun, 4 Mar 2018 19:23:02 -0500 Subject: [PATCH] display in logs contracts with address specified in the config --- lib/contracts/deploy.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/contracts/deploy.js b/lib/contracts/deploy.js index 4e6eab711..ad8a0215b 100644 --- a/lib/contracts/deploy.js +++ b/lib/contracts/deploy.js @@ -76,6 +76,7 @@ class Deploy { return callback(e.message); } contract.deployedAddress = contract.address; + self.logger.info(contract.className.bold.cyan + " already deployed at ".green + contract.address.bold.cyan); if (this.deployTracker) { self.deployTracker.trackContract(contract.className, contract.realRuntimeBytecode, realArgs, contract.address); self.deployTracker.save();