I tried to set up a P2Pool for goldcoin as well... but I can't get it working. Here are my networks.py:
Could you please give me a hint what i am doing wrong
PARENT=networks.nets['goldcoin'],
SHARE_PERIOD=90, # seconds target spacing
CHAIN_LENGTH=24*60*60//10, # shares
REAL_CHAIN_LENGTH=24*60*60//10, # shares
TARGET_LOOKBEHIND=200, # shares coinbase maturity
SPREAD=20, # blocks
IDENTIFIER='be43F5b8c6924210'.decode('hex'),
PREFIX='b587192ba6d4729a'.decode('hex'),
P2P_PORT=9777,
MIN_TARGET=0,
MAX_TARGET=2**256//2**20 - 1,
PERSIST=False,
WORKER_PORT=9777,
BOOTSTRAP_ADDRS='chncoin.no-ip.biz'.split(' '),
ANNOUNCE_CHANNEL='#p2pool-alt',
VERSION_CHECK=lambda v: True,
),
P2P_PREFIX='fbc0b6db'.decode('hex'),
P2P_PORT=9556,
ADDRESS_VERSION=32,
RPC_PORT=9556,
RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
'gldcoinaddress' in (yield bitcoind.rpc_help()) and
not (yield bitcoind.rpc_getinfo())['testnet']
)),
SUBSIDY_FUNC=lambda height: 100*10000000 >> (height + 1)//673700,
POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
BLOCK_PERIOD=90, # s targetspacing
SYMBOL='GLD',
CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'gldcoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/gldcoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.gldcoin'), 'gldcoin.conf'),
BLOCK_EXPLORER_URL_PREFIX='http://d.evco.in/abe/block/',
ADDRESS_EXPLORER_URL_PREFIX='http://d.evco.in/abe/address/',
SANE_TARGET_RANGE=(2**256//100000000 - 1, 2**256//1000 - 1),
DUMB_SCRYPT_DIFF=2**16,
),
The Server is starting and everything seems fine. The Worker is even connecting... But there are no results....