From 83520affa3c84b5f50f4fabd1966fd2802e85caa Mon Sep 17 00:00:00 2001 From: Aakil Fernandes Date: Wed, 14 Oct 2015 10:54:07 -0400 Subject: [PATCH] add contractdb --- lib/deploy.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/deploy.js b/lib/deploy.js index 03f169e05..c903222a4 100644 --- a/lib/deploy.js +++ b/lib/deploy.js @@ -188,6 +188,7 @@ Deploy.prototype.generate_abi_file = function() { result += className + "Contract = web3.eth.contract(" + className + "Abi);"; result += className + " = " + className + "Contract.at('" + contractAddress + "');"; } + result += 'contractDB = '+JSON.stringify(this.contractDB)+';' return result; };