From d3c9ce1865abd4c35ffb71ed6f7998f56c825887 Mon Sep 17 00:00:00 2001 From: Forrest Voight Date: Mon, 8 Aug 2011 21:10:59 -0400 Subject: [PATCH] changed bitcoind reconnect period to 1 second --- p2pool/bitcoin/p2p.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/p2pool/bitcoin/p2p.py b/p2pool/bitcoin/p2p.py index 7128ad8..bc2b5de 100644 --- a/p2pool/bitcoin/p2p.py +++ b/p2pool/bitcoin/p2p.py @@ -294,7 +294,7 @@ class Protocol(BaseProtocol): class ClientFactory(protocol.ReconnectingClientFactory): protocol = Protocol - maxDelay = 15 + maxDelay = 1 def __init__(self, net): self.net = net -- 1.7.1