Browse Source

Merge branch 'master' of github.com:kyuupichan/electrumx

master 0.10.17
Neil Booth 8 years ago
parent
commit
f1251766b6
  1. 12
      lib/coins.py

12
lib/coins.py

@ -439,6 +439,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):
@ -462,6 +470,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…
Cancel
Save