feat: apply eslint --fix across project

This commit is contained in:
Matt Condon
2017-11-24 14:31:52 +02:00
parent 6ea0577bfe
commit 8662846838
53 changed files with 1692 additions and 807 deletions

View File

@ -5,44 +5,44 @@ require('babel-polyfill');
const HDWalletProvider = require('truffle-hdwallet-provider');
const providerWithMnemonic = (mnemonic, rpcEndpoint) =>
new HDWalletProvider(mnemonic, rpcEndpoint)
new HDWalletProvider(mnemonic, rpcEndpoint);
const infuraProvider = network => providerWithMnemonic(
process.env.MNEMONIC,
`https://${network}.infura.io/${process.env.INFURA_API_KEY}`
)
);
const ropstenProvider = process.env.SOLIDITY_COVERAGE
? undefined
: infuraProvider('ropsten')
: infuraProvider('ropsten');
module.exports = {
networks: {
development: {
host: 'localhost',
port: 8545,
network_id: '*'
network_id: '*',
},
ropsten: {
provider: ropstenProvider,
network_id: 3 // official id of the ropsten network
network_id: 3, // official id of the ropsten network
},
coverage: {
host: "localhost",
network_id: "*",
host: 'localhost',
network_id: '*',
port: 8555,
gas: 0xfffffffffff,
gasPrice: 0x01
gasPrice: 0x01,
},
testrpc: {
host: 'localhost',
port: 8545,
network_id: '*'
network_id: '*',
},
ganache: {
host: 'localhost',
port: 7545,
network_id: '*'
network_id: '*',
},
}
},
};