force truffle gasPrice to make it consistent since it seems different on travis

This commit is contained in:
Maximilian Krüger 2018-01-04 19:00:36 +01:00
parent a28fa13f87
commit 434b845319
1 changed files with 2 additions and 1 deletions

View File

@ -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,
}
}
};