From fa4cfdfcd306bbe89607ffb6e446cd8e7bfac6d9 Mon Sep 17 00:00:00 2001 From: Neal Date: Tue, 21 Jun 2022 16:30:26 -0400 Subject: [PATCH] fix: update geth, disable new installs --- lib/blockchain/common.js | 4 ++-- lib/blockchain/install.js | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/blockchain/common.js b/lib/blockchain/common.js index 6004dda3..6b9d59f2 100644 --- a/lib/blockchain/common.js +++ b/lib/blockchain/common.js @@ -29,8 +29,8 @@ const BINARIES = { dir: 'bitcoin-23.0/bin' }, ETH: { - url: 'https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.10.17-25c9b49f.tar.gz', - dir: 'geth-linux-amd64-1.10.17-25c9b49f' + url: 'https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.10.19-23bee162.tar.gz', + dir: 'geth-linux-amd64-1.10.19-23bee162' }, ZEC: { url: 'https://z.cash/downloads/zcash-5.0.0-linux64-debian-bullseye.tar.gz', diff --git a/lib/blockchain/install.js b/lib/blockchain/install.js index 1191f20e..377d7952 100644 --- a/lib/blockchain/install.js +++ b/lib/blockchain/install.js @@ -148,7 +148,9 @@ function run () { name, value: c.code, checked, - disabled: checked && 'Installed' + disabled: c.cryptoCode === 'ETH' + ? 'Use admin\'s Infura plugin' + : checked && 'Installed' } }), ])(cryptos)