From 780a5dad9fda14fc79c5bd78904f4408164ac08d Mon Sep 17 00:00:00 2001 From: Forrest Voight Date: Wed, 27 Jul 2011 21:09:32 -0400 Subject: [PATCH] fix for commit fixing memory issues --- 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 9ac30bb..852643b 100644 --- a/p2pool/bitcoin/p2p.py +++ b/p2pool/bitcoin/p2p.py @@ -314,7 +314,7 @@ class ClientFactory(protocol.ReconnectingClientFactory): return self.conn.get_not_none() class HeaderWrapper(object): - target = -1 + target = 0 __slots__ = 'hash previous_hash'.split(' ') def __init__(self, header): -- 1.7.1