Add PEERS for DASH (#117)
* Add PEERS for DASH * Update PEER_DEFAULT_PORTS for DASH Testnet
This commit is contained in:
parent
2d126f7436
commit
0e51c80156
12
lib/coins.py
12
lib/coins.py
@ -429,6 +429,14 @@ class Dash(Coin):
|
||||
RPC_PORT = 9998
|
||||
IRC_PREFIX = "D_"
|
||||
IRC_CHANNEL = "#electrum-dash"
|
||||
PEERS = [
|
||||
'electrum.dash.org s t'
|
||||
'electrum.masternode.io s t',
|
||||
'electrum-drk.club s t',
|
||||
'dashcrypto.space s t',
|
||||
'electrum.dash.siampm.com s t',
|
||||
'wl4sfwq2hwxnodof.onion s t',
|
||||
]
|
||||
|
||||
@classmethod
|
||||
def header_hash(cls, header):
|
||||
@ -451,6 +459,10 @@ class DashTestnet(Dash):
|
||||
TX_PER_BLOCK = 1
|
||||
RPC_PORT = 19998
|
||||
IRC_PREFIX = "d_"
|
||||
PEER_DEFAULT_PORTS = {'t':'51001', 's':'51002'}
|
||||
PEERS = [
|
||||
'electrum.dash.siampm.com s t',
|
||||
]
|
||||
|
||||
|
||||
class Argentum(Coin):
|
||||
|
||||
Loading…
Reference in New Issue
Block a user