oracles-presale/truffle.js

22 lines
447 B
JavaScript
Raw Normal View History

2017-11-09 18:16:40 -08:00
module.exports = {
// See <http://truffleframework.com/docs/advanced/configuration>
// to customize your Truffle configuration!
networks: {
development: {
host: "localhost",
port: 8545,
network_id: "*" // Match any network id
2017-11-09 20:41:25 -08:00
},
coverage: {
host: "localhost",
network_id: "*",
port: 8555,
gas: 0xfffffffffff,
gasPrice: 0x01
2017-11-09 18:16:40 -08:00
}
2017-11-09 18:22:19 -08:00
},
mocha: {
reporter: 'mochawesome'
2017-11-09 18:16:40 -08:00
}
};