1
0

add get_completions to wallet

This commit is contained in:
ThomasV
2015-03-31 12:01:42 +02:00
parent 4d7b68658b
commit f77311328a
2 changed files with 12 additions and 6 deletions

View File

@@ -1105,12 +1105,7 @@ class ElectrumWindow(QMainWindow):
self.from_list.addTopLevelItem(QTreeWidgetItem( [format(item), self.format_amount(item['value']) ]))
def update_completions(self):
l = []
for addr,label in self.wallet.labels.items():
if addr in self.wallet.addressbook:
l.append( label + ' <' + addr + '>')
run_hook('update_completions', l)
l = self.wallet.get_completions()
self.completions.setStringList(l)