I have changed the fee to 0% and also changed some parameters for
http://dutchpool.org due to the recent changes in NLG coin. Statistics should work better now. OmarG and anyone else using my previous settings should consider changing them to the new parameters below. Of course anyone is welcome to run their own p2pool node at home, as that is what p2ool was intended for from the start, you will have all the benefits of solo-mining but with the added advantage of the p2pool network to combine your hashingpower with other nodes
As soon as there is an official block-explorer it can be added to the settings.
networks.py:
guldencoin=math.Object(
PARENT=networks.nets['guldencoin'],
SHARE_PERIOD=30, # seconds target spacing
CHAIN_LENGTH=3*60*60//10, # shares
REAL_CHAIN_LENGTH=3*60*60//10, # shares
TARGET_LOOKBEHIND=20, # shares coinbase maturity
SPREAD=10, # blocks
IDENTIFIER='fc6562434326696e'.decode('hex'),
PREFIX='fe63ededfe6c656a'.decode('hex'),
P2P_PORT=27000,
MIN_TARGET=0,
MAX_TARGET=2**256//2**20 - 1,
PERSIST=False,
WORKER_PORT=27100,
BOOTSTRAP_ADDRS='dutchpool.org omargpools.ca'.split(' '),
ANNOUNCE_CHANNEL='#p2pool-alt',
VERSION_CHECK=lambda v: True,
),
bitcoin/networks.py
guldencoin=math.Object(
P2P_PREFIX='fbc0b6db'.decode('hex'), #pchmessagestart
P2P_PORT=9231,
ADDRESS_VERSION=38, #pubkey_address
RPC_PORT=9232,
RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
'GuldenCoinaddress' in (yield bitcoind.rpc_help()) and
not (yield bitcoind.rpc_getinfo())['testnet']
)),
SUBSIDY_FUNC=lambda height: 1000*100000000 >> (height + 1)//840000,
POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
BLOCK_PERIOD=150, # s
SYMBOL='NLG',
CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'guldencoin')
if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/guldencoin/')
if platform.system() == 'Darwin' else os.path.expanduser('~/.guldencoin'), 'guldencoin.conf'),
BLOCK_EXPLORER_URL_PREFIX='
http://cryptexplorer.com/block/',
ADDRESS_EXPLORER_URL_PREFIX='
http://cryptexplorer.com/address/',
TX_EXPLORER_URL_PREFIX='
http://cryptexplorer.com/tx/',
SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
DUMB_SCRYPT_DIFF=2**16,
DUST_THRESHOLD=0.03e8,
),