fix: update geth, correct unsupported flag
This commit is contained in:
parent
514d449093
commit
a10db94eb4
2 changed files with 3 additions and 3 deletions
|
|
@ -25,8 +25,8 @@ const BINARIES = {
|
||||||
dir: 'bitcoin-0.20.1/bin'
|
dir: 'bitcoin-0.20.1/bin'
|
||||||
},
|
},
|
||||||
ETH: {
|
ETH: {
|
||||||
url: 'https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.10.8-26675454.tar.gz',
|
url: 'https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.10.9-eae3b194.tar.gz',
|
||||||
dir: 'geth-linux-amd64-1.10.8-26675454'
|
dir: 'geth-linux-amd64-1.10.9-eae3b194'
|
||||||
},
|
},
|
||||||
ZEC: {
|
ZEC: {
|
||||||
url: 'https://z.cash/downloads/zcash-4.5.1-linux64-debian-stretch.tar.gz',
|
url: 'https://z.cash/downloads/zcash-4.5.1-linux64-debian-stretch.tar.gz',
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,6 @@ module.exports = {setup}
|
||||||
function setup (dataDir) {
|
function setup (dataDir) {
|
||||||
const coinRec = coinUtils.getCryptoCurrency('ETH')
|
const coinRec = coinUtils.getCryptoCurrency('ETH')
|
||||||
common.firewall([coinRec.defaultPort])
|
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)
|
common.writeSupervisorConfig(coinRec, cmd)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue