kyuupichan/electrumx

Help with Blackcoin Parameters

michelvankessel opened this issue · 1 comments

Hi, we are currently testing electrum with our new wallet software
https://gitlab.com/blackcoin/blackcoin-more

In the past Blackcoin was added, and we are now verifying the code below. We would like to understand some of the parameters currently used at /electrumx/lib/coins.py#L1578

Specifically the parameters starting at DAEMON, except RPC_PORT. Is there an explanation for these? We want to make sure the correct values are used!

class Blackcoin(ScryptMixin, Coin):
NAME = "Blackcoin"
SHORTNAME = "BLK"
NET = "mainnet"
P2PKH_VERBYTE = bytes.fromhex("19")
P2SH_VERBYTES = [bytes.fromhex("55")]
WIF_BYTE = bytes.fromhex("99")
GENESIS_HASH = ('000001faef25dec4fbcf906e6242621d'
'f2c183bf232f263d0ba5b101911e4563')

DAEMON = daemon.LegacyRPCDaemon
TX_COUNT = 4594999
TX_COUNT_HEIGHT = 1667070
TX_PER_BLOCK = 3
RPC_PORT = 15715
REORG_LIMIT = 5000

wrong project.