fix the tx counter field

This commit is contained in:
ThomasV 2013-02-27 21:22:52 +01:00
parent 50d029e61c
commit b116a43c31
2 changed files with 8 additions and 8 deletions

View File

@ -1152,10 +1152,10 @@ class ElectrumWindow:
for address in self.wallet.addressbook:
label = self.wallet.labels.get(address)
n = 0
for item in self.wallet.transactions.values():
if address in item['outputs'] : n=n+1
tx = "None" if n==0 else "%d"%n
self.addressbook_list.append((address, label, tx))
for tx in self.wallet.transactions.values():
if address in map(lambda x:x[0], tx.outputs): n += 1
self.addressbook_list.append((address, label, "%d"%n))
def update_history_tab(self):
cursor = self.history_treeview.get_cursor()[0]

View File

@ -1262,10 +1262,10 @@ class ElectrumWindow(QMainWindow):
if address in alias_targets: continue
label = self.wallet.labels.get(address,'')
n = 0
#for item in self.wallet.transactions.values():
# if address in item['outputs'] : n=n+1
tx = "%d"%n
item = QTreeWidgetItem( [ address, label, tx] )
for tx in self.wallet.transactions.values():
if address in map(lambda x: x[0], tx.outputs): n += 1
item = QTreeWidgetItem( [ address, label, "%d"%n] )
item.setFont(0, QFont(MONOSPACE_FONT))
l.addTopLevelItem(item)