Skip to content

Commit

Permalink
testnet setup for zclassic
Browse files Browse the repository at this point in the history
  • Loading branch information
nxsofsys committed Jan 16, 2018
1 parent 8285ddd commit 08f71f3
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions lib/coins.py
Original file line number Diff line number Diff line change
Expand Up @@ -902,6 +902,23 @@ class Zclassic(EquihashMixin, Coin):
REORG_LIMIT = 800
CHUNK_SIZE = 200

class ZclassicTestnet(EquihashMixin, Coin):
NAME = "Zclassic"
SHORTNAME = "ZCL"
NET = "testnet"
P2PKH_VERBYTE = bytes.fromhex("1D25")
P2SH_VERBYTES = [bytes.fromhex("1CBA")]
WIF_BYTE = bytes.fromhex("EF")
GENESIS_HASH = ( '03e1c4bb705c871bf9bfda3e74b7f8f8'
'6bff267993c215a89d5795e3708e5e1f')
DESERIALIZER = lib_tx.DeserializerZcash
TX_COUNT = 329196
TX_COUNT_HEIGHT = 68379
TX_PER_BLOCK = 5
RPC_PORT = 18023
REORG_LIMIT = 800
CHUNK_SIZE = 200

class Komodo(KomodoMixin, EquihashMixin, Coin):
NAME = "Komodo"
SHORTNAME = "KMD"
Expand Down

0 comments on commit 08f71f3

Please sign in to comment.