From ed2c5da2875b0af5f56b11f9de41a2d300fce751 Mon Sep 17 00:00:00 2001 From: MASM fan Date: Sat, 8 Feb 2014 10:57:44 +0400 Subject: [PATCH] Don't include transaction if it still too young --- p2pool/data.py | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/p2pool/data.py b/p2pool/data.py index e5a69ce..72afbe4 100644 --- a/p2pool/data.py +++ b/p2pool/data.py @@ -139,6 +139,8 @@ class Share(object): this = tx_hash_to_this[tx_hash] else: if known_txs is not None: + if known_txs[tx_hash]['timestamp'] > desired_timestamp - 30: + continue this_size = bitcoin_data.tx_type.packed_size(known_txs[tx_hash]) if new_transaction_size + this_size > 50000: # only allow 50 kB of new txns/share break -- 1.7.1