Skip to content

Commit

Permalink
Network IDs should be numbers, unless they're *
Browse files Browse the repository at this point in the history
  • Loading branch information
area committed Dec 12, 2018
1 parent dc311d7 commit d260a03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions truffle.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ module.exports = {
host: "localhost",
port: 8545,
gasPrice: 0,
network_id: "1998"
network_id: 1998
},
coverage: {
host: "localhost",
port: 8555, // <-- Use port 8555
gas: 0xfffffffffff, // <-- Use this high gas value
gasPrice: 0x01, // <-- Use this low gas price
network_id: "1999"
network_id: 1999
}
},
mocha: {
Expand Down

0 comments on commit d260a03

Please sign in to comment.