From 6fc0ae633d418ff997359b89212b4f42d9ed9b68 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 4 Nov 2012 19:27:21 +0100 Subject: [PATCH] bugfix: wanted-> missing --- lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet.py b/lib/wallet.py index 9176f653..30a64de5 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -979,7 +979,7 @@ class WalletSynchronizer(threading.Thread): # request transactions that we don't have for tx_hash, tx_height in hist: if self.wallet.transactions.get(tx_hash) is None: - if (tx_hash, tx_height) not in requested_tx and (tx_hash, tx_height) not in wanted_tx: + if (tx_hash, tx_height) not in requested_tx and (tx_hash, tx_height) not in missing_tx: missing_tx.append( (tx_hash, tx_height) ) else: self.wallet.set_tx_timestamp(tx_hash, tx_height)