I'd like to create a p2pool for jnc however I have no idea what to put in the networks.py.. if anyone can assist?
feathercoin=math.Object(
PARENT=networks.nets['feathercoin'], // junkcoin?
SHARE_PERIOD=30, # seconds
CHAIN_LENGTH=60*60//10, # shares
REAL_CHAIN_LENGTH=60*60//10, # shares
TARGET_LOOKBEHIND=200, # shares
SPREAD=120, # blocks
IDENTIFIER='e037d5b8c6923410'.decode('hex'), // ???
PREFIX='7208c1a53ef629b0'.decode('hex'), // ???
P2P_PORT=19340,
MIN_TARGET=0,
MAX_TARGET=2**256//2**20 - 1,
PERSIST=False,
WORKER_PORT=19328,
BOOTSTRAP_ADDRS='pool.feathercoin.cc fpool1.zapto.org'.split(' '),
ANNOUNCE_CHANNEL='#p2pool-alt',
VERSION_CHECK=lambda v: True,
),
and any other code that might need to be changed?