From c5e55d16c4cfe058ca641d2a746a665f277f0c9f Mon Sep 17 00:00:00 2001 From: razvan Date: Fri, 15 Mar 2019 16:11:41 +0100 Subject: [PATCH] lower default gas in truffle for localgeth --- truffle.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/truffle.js b/truffle.js index 2f377b2..76ee521 100644 --- a/truffle.js +++ b/truffle.js @@ -22,14 +22,14 @@ module.exports = { port: 8545, network_id: "*", // Match any network id from: "0xd77c534aed04d7ce34cd425073a033db4fbe6a9d", // Ganache first account - gas: 8000000 + gas: 6000000 }, localgeth: { host: "localhost", port: 9545, network_id: "*", // Match any network id from: account, - gas: 8000000 + gas: 6000000 }, rinkeby: { provider: new HDWalletProvider(privateKey, endpoint),