From daba3b9319016f0f34f809d4099a6cff154f1486 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Wed, 13 Dec 2017 11:38:36 -0500 Subject: [PATCH] remove extra character in template causing issues with the console --- lib/contracts/code_templates/define-web3-simple.js.ejs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/contracts/code_templates/define-web3-simple.js.ejs b/lib/contracts/code_templates/define-web3-simple.js.ejs index b6177bfa..df7d0df6 100644 --- a/lib/contracts/code_templates/define-web3-simple.js.ejs +++ b/lib/contracts/code_templates/define-web3-simple.js.ejs @@ -1,3 +1,3 @@ __mainContext.web3 = undefined; -web3 = new Web3(new Web3.providers.HttpProvider("<%- url -%>'")); +web3 = new Web3(new Web3.providers.HttpProvider("<%- url -%>")); <%- done %>