From: MASM fan Date: Sat, 8 Feb 2014 06:57:44 +0000 (+0400) Subject: Don't include transaction if it still too young X-Git-Url: https://git.novaco.in/?p=p2pool.git;a=commitdiff_plain;h=ed2c5da2875b0af5f56b11f9de41a2d300fce751;hp=702aba6996bc880a9af26aeeef19bea29813c141 Don't include transaction if it still too young --- 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