changed bitcoind reconnect period to 1 second
authorForrest Voight <forrest@forre.st>
Tue, 9 Aug 2011 01:10:59 +0000 (21:10 -0400)
committerForrest Voight <forrest@forre.st>
Tue, 9 Aug 2011 01:10:59 +0000 (21:10 -0400)
p2pool/bitcoin/p2p.py

index 7128ad8..bc2b5de 100644 (file)
@@ -294,7 +294,7 @@ class Protocol(BaseProtocol):
 class ClientFactory(protocol.ReconnectingClientFactory):
     protocol = Protocol
     
-    maxDelay = 15
+    maxDelay = 1
     
     def __init__(self, net):
         self.net = net