fix gas parameter

This commit is contained in:
Iuri Matias 2016-09-13 06:58:52 -04:00
parent f38d0e886c
commit abfeef5595
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ EmbarkJS.Contract.prototype.deploy = function(args) {
contractParams.push({ contractParams.push({
from: this.web3.eth.accounts[0], from: this.web3.eth.accounts[0],
data: this.code, data: this.code,
gasLimit: 500000, gas: 500000,
gasPrice: 10000000000000 gasPrice: 10000000000000
}); });