From 0be18390f1ef6f750145f5b509b9cc6b55c82048 Mon Sep 17 00:00:00 2001 From: VoR0220 Date: Tue, 29 May 2018 14:02:26 -0500 Subject: [PATCH] get rid of the template Signed-off-by: VoR0220 --- lib/contracts/code_templates/vanilla-contract.js.ejs | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/contracts/code_templates/vanilla-contract.js.ejs b/lib/contracts/code_templates/vanilla-contract.js.ejs index 8527b3a3..908d5769 100644 --- a/lib/contracts/code_templates/vanilla-contract.js.ejs +++ b/lib/contracts/code_templates/vanilla-contract.js.ejs @@ -1,7 +1,6 @@ <%- className %>Abi = <%- abi %>; <%- className %> = new web3.eth.Contract(<%- className %>Abi); <%- className %>.options.address = '<%- contract.deployedAddress %>'; -<%- className %>.abi = <%- abi %>; <%- className %>.address = '<%- contract.deployedAddress %>'; <%- className %>.options.from = web3.eth.defaultAccount; <% if (gasLimit != false) { %>