Fix ETH peers and bump to 1.8.1 (#101)

* Fix ETH 'maxpeers'

* Update geth to 1.8.1
This commit is contained in:
Neal Conner 2018-02-26 17:03:15 +00:00 committed by Josh Harvey
parent c2248e13d7
commit c9120fa961
2 changed files with 3 additions and 3 deletions

View file

@ -7,6 +7,6 @@ module.exports = {setup}
function setup (dataDir) {
const coinRec = coinUtils.getCryptoCurrency('ETH')
common.firewall([coinRec.defaultPort])
const cmd = `/usr/local/bin/${coinRec.daemon} --datadir "${dataDir}" --syncmode="fast" --cache 2048 --maxconnections 40 --rpc`
const cmd = `/usr/local/bin/${coinRec.daemon} --datadir "${dataDir}" --syncmode="fast" --cache 2048 --maxpeers 40 --rpc`
common.writeSupervisorConfig(coinRec, cmd)
}