From 2073539b6f7355bea0151b2cf91deecfcc05f937 Mon Sep 17 00:00:00 2001 From: Forrest Voight Date: Tue, 1 Jan 2013 20:08:39 -0500 Subject: [PATCH] fixed: don't display meaningless "punishing share for 'not all txs present'" message at start --- p2pool/data.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/p2pool/data.py b/p2pool/data.py index f4114cd..58cb3d6 100644 --- a/p2pool/data.py +++ b/p2pool/data.py @@ -347,7 +347,7 @@ class Share(object): other_txs = self._get_other_txs(tracker, known_txs) if other_txs is None: - if self.time_seen == 0: # ignore if loaded from ShareStore + if self.time_seen != 0: # ignore if loaded from ShareStore return True, 'not all txs present' else: all_txs_size = sum(bitcoin_data.tx_type.packed_size(tx) for tx in other_txs) -- 1.7.1