diff --git a/.gitignore b/.gitignore index a25c0e34..ee11b61f 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ test_app/chains.json .idea .eslintrc.json .embark/ +NOTES 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 %> diff --git a/package.json b/package.json index 009cdfe6..efe96126 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "embark", - "version": "2.6.0", + "version": "2.6.1", "description": "Embark is a framework that allows you to easily develop and deploy DApps", "scripts": { "test": "grunt jshint && mocha test/ --no-timeouts && cd test_app/ && npm install && ../bin/embark test",