From 2f045315658a8ab7713b215b3c0aa79c3bc441bb Mon Sep 17 00:00:00 2001 From: thomasv Date: Fri, 23 Nov 2012 17:11:32 +0100 Subject: [PATCH] fix --- lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet.py b/lib/wallet.py index 308c49276..4fe3a86df 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -1079,7 +1079,7 @@ class Wallet: return False # check that we are not "orphaning" a transaction - old_hist = self.history.get(addr) + old_hist = self.history.get(addr,[]) if old_hist == ['*']: return True for tx_hash, height in old_hist: