diff --git a/lib/blockchain/common.js b/lib/blockchain/common.js index 124bb03d..1a1764ac 100644 --- a/lib/blockchain/common.js +++ b/lib/blockchain/common.js @@ -25,8 +25,8 @@ const BINARIES = { dir: 'bitcoin-0.20.1/bin' }, ETH: { - url: 'https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.10.8-26675454.tar.gz', - dir: 'geth-linux-amd64-1.10.8-26675454' + url: 'https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.10.9-eae3b194.tar.gz', + dir: 'geth-linux-amd64-1.10.9-eae3b194' }, ZEC: { url: 'https://z.cash/downloads/zcash-4.5.1-linux64-debian-stretch.tar.gz', diff --git a/lib/blockchain/ethereum.js b/lib/blockchain/ethereum.js index aa73bf36..11438145 100644 --- a/lib/blockchain/ethereum.js +++ b/lib/blockchain/ethereum.js @@ -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="light" --cache 2048 --maxpeers 40 --rpc` + const cmd = `/usr/local/bin/${coinRec.daemon} --datadir "${dataDir}" --syncmode="light" --cache 2048 --maxpeers 40 --http` common.writeSupervisorConfig(coinRec, cmd) }