Browse Source

update peers for BitcoinSegwitTestnet and BitcoinCashTestnet (#283)

patch-1
SomberNight 7 years ago
committed by Neil
parent
commit
aeccdc0cd9
  1. 14
      lib/coins.py

14
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):

Loading…
Cancel
Save