From 434b8453198fe6527eb16e19ab4932b832081393 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Kru=CC=88ger?= Date: Thu, 4 Jan 2018 19:00:36 +0100 Subject: [PATCH] force truffle gasPrice to make it consistent since it seems different on travis --- truffle/truffle.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/truffle/truffle.js b/truffle/truffle.js index d972c21..f1a5359 100644 --- a/truffle/truffle.js +++ b/truffle/truffle.js @@ -3,7 +3,8 @@ module.exports = { development: { host: "localhost", port: 8547, - network_id: "*" // Match any network id + network_id: "*", // Match any network id + gasPrice: 100000000000, } } };