From 9bd75e05e7f44187caee02f179ec30d9f8ec02ae Mon Sep 17 00:00:00 2001 From: thomasv Date: Mon, 28 Jan 2013 14:01:25 +0100 Subject: [PATCH] simplify if statement --- lib/gui_qt.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/gui_qt.py b/lib/gui_qt.py index 5fedda09..4986b389 100644 --- a/lib/gui_qt.py +++ b/lib/gui_qt.py @@ -1183,13 +1183,12 @@ class ElectrumWindow(QMainWindow): h = self.wallet.history.get(address,[]) - if h == []: - if address in self.wallet.addresses: + if address in self.wallet.addresses: + if h == []: gap += 1 if gap > self.wallet.gap_limit: is_red = True - else: - if address in self.wallet.addresses: + else: gap = 0 num_tx = '*' if h == ['*'] else "%d"%len(h)