From ecbab3f7c52c6d64f0e2575c5f45bd5fa135fa71 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Sat, 20 Jun 2015 08:14:09 -0400 Subject: [PATCH] update default gas value --- tasks/deploy.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/deploy.coffee b/tasks/deploy.coffee index c217a612..d63e6266 100644 --- a/tasks/deploy.coffee +++ b/tasks/deploy.coffee @@ -7,7 +7,7 @@ module.exports = (grunt) -> contractsConfig = readYaml.sync("config/contracts.yml")[env || "development"] rpcHost = blockchainConfig[env || "development"].rpc_host rpcPort = blockchainConfig[env || "development"].rpc_port - gasLimit = blockchainConfig[env || "development"].gas_limit || 100000 + gasLimit = blockchainConfig[env || "development"].gas_limit || 500000 gasPrice = blockchainConfig[env || "development"].gas_price || 10000000000000 try