From abfeef55956b57517151e79cff9dee44e8b73ca4 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Tue, 13 Sep 2016 06:58:52 -0400 Subject: [PATCH] fix gas parameter --- js/embark.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/embark.js b/js/embark.js index 2b44c14bd..04237ff89 100644 --- a/js/embark.js +++ b/js/embark.js @@ -51,7 +51,7 @@ EmbarkJS.Contract.prototype.deploy = function(args) { contractParams.push({ from: this.web3.eth.accounts[0], data: this.code, - gasLimit: 500000, + gas: 500000, gasPrice: 10000000000000 });