add bootstrap node
[p2pool.git] / p2pool / networks.py
index 78439e3..a1cd5f1 100644 (file)
@@ -10,9 +10,9 @@ from p2pool.util import math
 nets = dict(
     novacoin=math.Object(
         PARENT=networks.nets['novacoin'],
-        SHARE_PERIOD=10, # seconds
-        CHAIN_LENGTH=24*60*60//10, # shares
-        REAL_CHAIN_LENGTH=24*60*60//10, # shares
+        SHARE_PERIOD=30, # seconds
+        CHAIN_LENGTH=24*60*60//30, # shares
+        REAL_CHAIN_LENGTH=24*60*60//30, # shares
         TARGET_LOOKBEHIND=200, # shares
         SPREAD=3, # blocks
         IDENTIFIER='e037d5b8c6923510'.decode('hex'),
@@ -22,7 +22,7 @@ nets = dict(
         MAX_TARGET=2**256//2**20 - 1,
         PERSIST=True,
         WORKER_PORT=8336,
-        BOOTSTRAP_ADDRS='188.120.239.144'.split(' '),
+        BOOTSTRAP_ADDRS='188.120.239.144 81.200.245.198 81.200.241.51 81.200.241.54 217.77.220.40'.split(' '),
         ANNOUNCE_CHANNEL='#p2pool-alt',
         VERSION_CHECK=lambda v: True,
     ),
@@ -40,7 +40,7 @@ nets = dict(
         MAX_TARGET=2**256//2**20 - 1,
         PERSIST=False,
         WORKER_PORT=18336,
-        BOOTSTRAP_ADDRS='188.120.239.144'.split(' '),
+        BOOTSTRAP_ADDRS=' '.split(' '),
         ANNOUNCE_CHANNEL='#p2pool-alt',
         VERSION_CHECK=lambda v: True,
     ),