Merge pull request #532 from naconner/wallets-again

chore: update wallet nodes, enable RBF by default
This commit is contained in:
Josh Harvey 2020-12-16 16:16:52 +00:00 committed by GitHub
commit eaac41d277
2 changed files with 10 additions and 9 deletions

View file

@ -25,5 +25,6 @@ connections=40
keypool=10000
prune=4000
daemon=0
addresstype=p2sh-segwit`
addresstype=p2sh-segwit
walletrbf=1`
}

View file

@ -25,24 +25,24 @@ const BINARIES = {
dir: 'bitcoin-0.20.1/bin'
},
ETH: {
url: 'https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.9.23-8c2f2715.tar.gz',
dir: 'geth-linux-amd64-1.9.23-8c2f2715'
url: 'https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.9.24-cc05b050.tar.gz',
dir: 'geth-linux-amd64-1.9.24-cc05b050'
},
ZEC: {
url: 'https://download.z.cash/downloads/zcash-4.1.0-linux64-debian-stretch.tar.gz',
dir: 'zcash-4.1.0/bin'
url: 'https://z.cash/downloads/zcash-4.1.1-linux64-debian-stretch.tar.gz',
dir: 'zcash-4.1.1/bin'
},
DASH: {
url: 'https://github.com/dashpay/dash/releases/download/v0.16.0.1/dashcore-0.16.0.1-x86_64-linux-gnu.tar.gz',
dir: 'dashcore-0.16.0/bin'
url: 'https://github.com/dashpay/dash/releases/download/v0.16.1.1/dashcore-0.16.1.1-x86_64-linux-gnu.tar.gz',
dir: 'dashcore-0.16.1/bin'
},
LTC: {
url: 'https://download.litecoin.org/litecoin-0.18.1/linux/litecoin-0.18.1-x86_64-linux-gnu.tar.gz',
dir: 'litecoin-0.18.1/bin'
},
BCH: {
url: 'https://github.com/bitcoin-cash-node/bitcoin-cash-node/releases/download/v22.1.0/bitcoin-cash-node-22.1.0-x86_64-linux-gnu.tar.gz',
dir: 'bitcoin-cash-node-22.1.0/bin',
url: 'https://github.com/bitcoin-cash-node/bitcoin-cash-node/releases/download/v22.2.0/bitcoin-cash-node-22.2.0-x86_64-linux-gnu.tar.gz',
dir: 'bitcoin-cash-node-22.2.0/bin',
files: [['bitcoind', 'bitcoincashd'], ['bitcoin-cli', 'bitcoincash-cli']]
}
}