Wallet version updates (#152)
* Update ZEC, ETH, BTC, DASH * Remove ZEC disabledeprecate -disabledeprecate flag was removed in zcashd v1.1.2 * Update BCH Compatible with November hard fork
This commit is contained in:
parent
1e480a7c16
commit
dfb64b8e6b
2 changed files with 11 additions and 11 deletions
|
|
@ -21,28 +21,28 @@ module.exports = {
|
|||
|
||||
const BINARIES = {
|
||||
BTC: {
|
||||
url: 'https://bitcoin.org/bin/bitcoin-core-0.16.1/bitcoin-0.16.1-x86_64-linux-gnu.tar.gz',
|
||||
dir: 'bitcoin-0.16.1/bin'
|
||||
url: 'https://bitcoin.org/bin/bitcoin-core-0.16.2/bitcoin-0.16.2-x86_64-linux-gnu.tar.gz',
|
||||
dir: 'bitcoin-0.16.2/bin'
|
||||
},
|
||||
ETH: {
|
||||
url: 'https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.8.11-dea1ce05.tar.gz',
|
||||
dir: 'geth-linux-amd64-1.8.11-dea1ce05'
|
||||
url: 'https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.8.13-225171a4.tar.gz',
|
||||
dir: 'geth-linux-amd64-1.8.13-225171a4'
|
||||
},
|
||||
ZEC: {
|
||||
url: 'https://z.cash/downloads/zcash-1.1.1-linux64.tar.gz',
|
||||
dir: 'zcash-1.1.1/bin'
|
||||
url: 'https://z.cash/downloads/zcash-2.0.0-linux64.tar.gz',
|
||||
dir: 'zcash-2.0.0/bin'
|
||||
},
|
||||
DASH: {
|
||||
url: 'https://github.com/dashpay/dash/releases/download/v0.12.2.3/dashcore-0.12.2.3-linux64.tar.gz',
|
||||
dir: 'dashcore-0.12.2/bin'
|
||||
url: 'https://github.com/dashpay/dash/releases/download/v0.12.3.2/dashcore-0.12.3.2-x86_64-linux-gnu.tar.gz',
|
||||
dir: 'dashcore-0.12.3/bin'
|
||||
},
|
||||
LTC: {
|
||||
url: 'https://download.litecoin.org/litecoin-0.16.0/linux/litecoin-0.16.0-x86_64-linux-gnu.tar.gz',
|
||||
dir: 'litecoin-0.16.0/bin'
|
||||
},
|
||||
BCH: {
|
||||
url: 'https://download.bitcoinabc.org/0.17.2/linux/bitcoin-abc-0.17.2-x86_64-linux-gnu.tar.gz',
|
||||
dir: 'bitcoin-abc-0.17.2/bin',
|
||||
url: 'https://download.bitcoinabc.org/0.18.0/linux/bitcoin-abc-0.18.0-x86_64-linux-gnu.tar.gz',
|
||||
dir: 'bitcoin-abc-0.18.0/bin',
|
||||
files: [['bitcoind', 'bitcoincashd'], ['bitcoin-cli', 'bitcoincash-cli']]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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} -disabledeprecation=1.1.1`
|
||||
const cmd = `/usr/local/bin/${coinRec.daemon} -datadir=${dataDir}`
|
||||
common.writeSupervisorConfig(coinRec, cmd)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue