Add NewYorkCoin testnet in coins.py (#452)
This commit is contained in:
parent
46f245891c
commit
7ef6e78bc9
14
lib/coins.py
14
lib/coins.py
@ -1442,6 +1442,20 @@ class Newyorkcoin(AuxPowMixin, Coin):
|
||||
TX_PER_BLOCK = 2
|
||||
REORG_LIMIT = 2000
|
||||
|
||||
class NewyorkcoinTestnet(Newyorkcoin):
|
||||
SHORTNAME = "tNYC"
|
||||
NET = "testnet"
|
||||
P2PKH_VERBYTE = bytes.fromhex("71")
|
||||
P2SH_VERBYTES = [bytes.fromhex("c4")]
|
||||
WIF_BYTE = bytes.fromhex("f1")
|
||||
GENESIS_HASH = ('24463e4d3c625b0a9059f309044c2cf0'
|
||||
'd7e196cf2a6ecce901f24f681be33c8f')
|
||||
DAEMON = daemon.LegacyRPCDaemon
|
||||
TX_COUNT = 5161944
|
||||
TX_COUNT_HEIGHT = 3948743
|
||||
TX_PER_BLOCK = 2
|
||||
REORG_LIMIT = 2000
|
||||
|
||||
class Bitcore(BitcoinMixin, Coin):
|
||||
NAME = "Bitcore"
|
||||
SHORTNAME = "BTX"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user