From: Forrest Voight Date: Mon, 26 Nov 2012 17:34:02 +0000 (-0500) Subject: don't display meaningless "punishing share for 'not all txs present'" message at... X-Git-Tag: 9.1~4 X-Git-Url: https://git.novaco.in/?p=p2pool.git;a=commitdiff_plain;h=25381452770355043f9fbe88689941b328af2058 don't display meaningless "punishing share for 'not all txs present'" message at start --- diff --git a/p2pool/data.py b/p2pool/data.py index b2c89ba..d326fa9 100644 --- a/p2pool/data.py +++ b/p2pool/data.py @@ -335,7 +335,8 @@ class NewNewShare(object): other_txs = self._get_other_txs(tracker, known_txs) if other_txs is None: - return True, 'not all txs present' + if self.time_seen is not None: # 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) if all_txs_size > 1000000: