Skip to content

Commit

Permalink
Update networks.py
Browse files Browse the repository at this point in the history
Changed CHAIN_LENGTH, REAL_CHAIN_LENGTH to match SHARE_PERIOD=5. Added new BOOTSTRAP_ADDRS for real this time :)
  • Loading branch information
CartmanSPC committed Dec 23, 2013
1 parent 384632e commit 6db0e9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions p2pool/networks.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@
PARENT=networks.nets['casinocoin'],
SHARE_PERIOD=5, # seconds target spacing
NEW_SHARE_PERIOD=5, # seconds
CHAIN_LENGTH=3*60*60//15, # shares
REAL_CHAIN_LENGTH=3*60*60//15, # shares
CHAIN_LENGTH=3*60*60//5, # shares
REAL_CHAIN_LENGTH=3*60*60//5, # shares
TARGET_LOOKBEHIND=60, # shares coinbase maturity
SPREAD=60, # blocks
NEW_SPREAD=60, # blocks
Expand All @@ -210,7 +210,7 @@
MAX_TARGET=2**256//2**20 - 1,
PERSIST=False,
WORKER_PORT=8840,
BOOTSTRAP_ADDRS='csc.xpool.net us-east1.cryptovein.com'.split(' '),
BOOTSTRAP_ADDRS='csc.xpool.net us-east1.cryptovein.com bigiron.homelinux.com'.split(' '),
ANNOUNCE_CHANNEL='#xpool',
VERSION_CHECK=lambda v: True,
),
Expand Down

0 comments on commit 6db0e9d

Please sign in to comment.