From aeccdc0cd99e9c41c665d12e9eb308dd1ff2fbfa Mon Sep 17 00:00:00 2001 From: SomberNight Date: Fri, 6 Oct 2017 08:28:11 +0200 Subject: [PATCH] update peers for BitcoinSegwitTestnet and BitcoinCashTestnet (#283) --- lib/coins.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/lib/coins.py b/lib/coins.py index cb45945..0b6856f 100644 --- a/lib/coins.py +++ b/lib/coins.py @@ -393,12 +393,7 @@ class BitcoinCashTestnet(BitcoinTestnetMixin, Coin): '''Bitcoin Testnet for Bitcoin Cash daemons.''' NAME = "BitcoinCash" PEERS = [ - 'electrum.akinbo.org s t', - 'he36kyperp3kbuxu.onion s t', - 'electrum-btc-testnet.petrkr.net s t', - 'testnet.hsmiths.com t53011', - 'hsmithsxurybd7uh.onion t53011 s53012', - 'ELEX05.blackpole.online t52001 s52002', + 'electrum-testnet-abc.criptolayer.net s50112', ] @@ -406,6 +401,13 @@ class BitcoinSegwitTestnet(BitcoinTestnetMixin, Coin): '''Bitcoin Testnet for Core bitcoind >= 0.13.1.''' NAME = "BitcoinSegwit" DESERIALIZER = DeserializerSegWit + PEERS = [ + 'electrum.akinbo.org s t', + 'he36kyperp3kbuxu.onion s t', + 'testnet.hsmiths.com t53011 s53012', + 'hsmithsxurybd7uh.onion t53011 s53012', + 'testnetnode.arihanc.com s t', + ] class BitcoinSegwitRegtest(BitcoinSegwitTestnet):