fix: update geth, disable new installs

This commit is contained in:
Neal 2022-06-21 16:30:26 -04:00
parent c94d767f0b
commit fa4cfdfcd3
2 changed files with 5 additions and 3 deletions

View file

@ -29,8 +29,8 @@ const BINARIES = {
dir: 'bitcoin-23.0/bin' dir: 'bitcoin-23.0/bin'
}, },
ETH: { ETH: {
url: 'https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.10.17-25c9b49f.tar.gz', url: 'https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.10.19-23bee162.tar.gz',
dir: 'geth-linux-amd64-1.10.17-25c9b49f' dir: 'geth-linux-amd64-1.10.19-23bee162'
}, },
ZEC: { ZEC: {
url: 'https://z.cash/downloads/zcash-5.0.0-linux64-debian-bullseye.tar.gz', url: 'https://z.cash/downloads/zcash-5.0.0-linux64-debian-bullseye.tar.gz',

View file

@ -148,7 +148,9 @@ function run () {
name, name,
value: c.code, value: c.code,
checked, checked,
disabled: checked && 'Installed' disabled: c.cryptoCode === 'ETH'
? 'Use admin\'s Infura plugin'
: checked && 'Installed'
} }
}), }),
])(cryptos) ])(cryptos)