From 906863ede31bffd43eb8f7325a56619a0788a62e Mon Sep 17 00:00:00 2001 From: Neal Date: Wed, 2 Dec 2020 11:53:10 -0500 Subject: [PATCH 1/2] chore: update wallet nodes --- lib/blockchain/common.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/blockchain/common.js b/lib/blockchain/common.js index 2ae62bc7..a5643ea3 100644 --- a/lib/blockchain/common.js +++ b/lib/blockchain/common.js @@ -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']] } } From 5aa61e8b4f790c9cbe3f98451bcbc058d527ca1d Mon Sep 17 00:00:00 2001 From: Neal Date: Wed, 2 Dec 2020 11:54:29 -0500 Subject: [PATCH 2/2] feat: enable RBF by default --- lib/blockchain/bitcoin.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/blockchain/bitcoin.js b/lib/blockchain/bitcoin.js index 78c95ba1..e5b6b86c 100644 --- a/lib/blockchain/bitcoin.js +++ b/lib/blockchain/bitcoin.js @@ -25,5 +25,6 @@ connections=40 keypool=10000 prune=4000 daemon=0 -addresstype=p2sh-segwit` +addresstype=p2sh-segwit +walletrbf=1` }