From 8308440ded80419bac745f824a6e1a2eb740d12d Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 24 Nov 2012 20:32:50 +0100 Subject: [PATCH] rm assert clause: there is no guarantee about that --- lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet.py b/lib/wallet.py index 7a11e0afe..fbca4e20a 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -1104,7 +1104,7 @@ class Wallet: ext_requests = [] for o in tx.get('outputs'): _addr = o.get('address') - assert not self.is_mine(_addr) + # assert not self.is_mine(_addr) ext_requests.append( ('blockchain.address.get_history', [_addr]) ) ext_h = self.interface.synchronous_get(ext_requests)