Merge pull request #1224 from naconner/ltc-update

fix: make LTC update dependent
This commit is contained in:
Rafael Taranto 2022-05-18 10:50:27 +01:00 committed by GitHub
commit f25ff92e25

View file

@ -41,6 +41,8 @@ const BINARIES = {
dir: 'dashcore-0.17.0/bin'
},
LTC: {
defaultUrl: 'https://download.litecoin.org/litecoin-0.18.1/linux/litecoin-0.18.1-x86_64-linux-gnu.tar.gz',
defaultDir: 'litecoin-0.18.1/bin',
url: 'https://download.litecoin.org/litecoin-0.21.2/linux/litecoin-0.21.2-x86_64-linux-gnu.tar.gz',
dir: 'litecoin-0.21.2/bin'
},
@ -56,7 +58,7 @@ const BINARIES = {
}
}
const coinsUpdateDependent = ['BTC']
const coinsUpdateDependent = ['BTC', 'LTC']
function firewall (ports) {
if (!ports || ports.length === 0) throw new Error('No ports supplied')