add contractdb

This commit is contained in:
Aakil Fernandes 2015-10-14 10:54:07 -04:00 committed by Aakil Fernandes
parent 9c3f31e351
commit 83520affa3
1 changed files with 1 additions and 0 deletions

View File

@ -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;
};