Update Zcash and Litecoin (#85)

* Update Zcash to 1.0.12

* Update zcash version in common.js

* Update geth in common.js

* Fix geth dir

* Update litecoin to 0.14.2

* Update litecoin to 0.14.2

* Insert disabledeprecation flag for zcashd

* Add -disabledeprecation=1.0.12

* Remove sed from zcash install.sh
This commit is contained in:
Neal Conner 2017-11-11 18:58:35 -05:00 committed by Josh Harvey
parent 50cf4be4d0
commit 28979e475c
3 changed files with 6 additions and 6 deletions

View file

@ -9,9 +9,9 @@ ufw allow 8332 >> $LOG_FILE 2>&1
ufw allow 22 >> $LOG_FILE 2>&1
ufw --force enable >> $LOG_FILE 2>&1
ufw status >> $LOG_FILE 2>&1
wget -q https://download.litecoin.org/litecoin-0.13.2/linux/litecoin-0.13.2-x86_64-linux-gnu.tar.gz >> $LOG_FILE 2>&1
tar -xzf litecoin-0.13.2-x86_64-linux-gnu.tar.gz >> $LOG_FILE 2>&1
cp litecoin-0.13.2/bin/* /usr/local/bin >> $LOG_FILE 2>&1
wget -q https://download.litecoin.org/litecoin-0.14.2/linux/litecoin-0.14.2-x86_64-linux-gnu.tar.gz >> $LOG_FILE 2>&1
tar -xzf litecoin-0.14.2-x86_64-linux-gnu.tar.gz >> $LOG_FILE 2>&1
cp litecoin-0.14.2/bin/* /usr/local/bin >> $LOG_FILE 2>&1
mkdir ~/.litecoin >> $LOG_FILE 2>&1
mv /tmp/litecoin.conf ~/.litecoin
mv /tmp/supervisor-litecoin.conf /etc/supervisor/conf.d/litecoin.conf >> $LOG_FILE 2>&1

View file

@ -34,8 +34,8 @@ const BINARIES = {
dir: 'dashcore-0.12.1/bin'
},
LTC: {
url: 'https://download.litecoin.org/litecoin-0.13.2/linux/litecoin-0.13.2-x86_64-linux-gnu.tar.gz',
dir: 'litecoin-0.13.2/bin'
url: 'https://download.litecoin.org/litecoin-0.14.2/linux/litecoin-0.14.2-x86_64-linux-gnu.tar.gz',
dir: 'litecoin-0.14.2/bin'
}
}

View file

@ -20,7 +20,7 @@ function setup (dataDir) {
logger.info('Finished fetching proofs.')
const config = buildConfig()
common.writeFile(path.resolve(dataDir, coinRec.configFile), config)
const cmd = `/usr/local/bin/${coinRec.daemon} -datadir=${dataDir}`
const cmd = `/usr/local/bin/${coinRec.daemon} -datadir=${dataDir} -disabledeprecation=1.0.12`
common.writeSupervisorConfig(coinRec, cmd)
}