1
0

More improvements to exchange_rate plugin

Everything should now update correctly on incoming data from
the exchange server.
This commit is contained in:
Neil Booth
2015-09-05 22:47:01 +09:00
parent c290455b94
commit 9e0e54157e
2 changed files with 24 additions and 11 deletions

View File

@@ -56,6 +56,7 @@ class HistoryWidget(MyTreeWidget):
item = self.currentItem()
current_tx = item.data(0, Qt.UserRole).toString() if item else None
self.clear()
run_hook('history_tab_update_begin')
for tx in h:
tx_hash, conf, value, timestamp, balance = tx
if conf is None and timestamp is None: