http://p2p.mine.bz:9024
Feel free to join.
To enable the DGB P2Pool network to grow, here's my P2Pool configuration:
networks.py
digibyte=math.Object(
PARENT=networks.nets['digibyte'],
SHARE_PERIOD=15, # seconds
CHAIN_LENGTH=24*60*60//10, # shares
REAL_CHAIN_LENGTH=24*60*60//10, # shares
TARGET_LOOKBEHIND=200, # shares
SPREAD=30, # blocks
IDENTIFIER='400690cf35352b24'.decode('hex'),
PREFIX='fa1fb851e8c0a924'.decode('hex'),
P2P_PORT=8024,
MIN_TARGET=0,
MAX_TARGET=2**256//2**20 - 1,
PERSIST=False,
WORKER_PORT=9024,
BOOTSTRAP_ADDRS='p2p.mine.bz'.split(' '),
ANNOUNCE_CHANNEL='#p2pool-alt',
VERSION_CHECK=lambda v: True,
),
bitcoin/networks.py
digibyte=math.Object(
P2P_PREFIX='fac3b6da'.decode('hex'), #pchmessagestart
P2P_PORT=12024,
ADDRESS_VERSION=30, #pubkey_address
RPC_PORT=14022,
RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
'digibyteaddress' in (yield bitcoind.rpc_help()) and
not (yield bitcoind.rpc_getinfo())['testnet']
)),
SUBSIDY_FUNC=lambda height: 8000 *100000000 >> (height + 1)//1051200,
POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
BLOCK_PERIOD=60, # s
SYMBOL='DGB',
CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'digibyte') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/digibyte/') if platform.system() == 'Darwin' else os.path.expanduser('~/.digibyte'), 'digibyte.conf'),
BLOCK_EXPLORER_URL_PREFIX='http://altexplorer.net/block/', #dummy
ADDRESS_EXPLORER_URL_PREFIX='http://altexplorer.net/address/',
TX_EXPLORER_URL_PREFIX='http://altexplorer.net/tx/',
SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
DUMB_SCRYPT_DIFF=2**16,
DUST_THRESHOLD=0.03e8,
),
Happy mining!
Where's your server located?