1
0

wallet: minor opt in get_history

This commit is contained in:
SomberNight
2018-09-18 16:41:56 +02:00
parent 825d7c2cbd
commit fef15f9c02

View File

@@ -528,8 +528,7 @@ class AddressSynchronizer(PrintError):
delta = tx_deltas[tx_hash]
tx_mined_status = self.get_tx_height(tx_hash)
history.append((tx_hash, tx_mined_status, delta))
history.sort(key = lambda x: self.get_txpos(x[0]))
history.reverse()
history.sort(key = lambda x: self.get_txpos(x[0]), reverse=True)
# 3. add balance
c, u, x = self.get_balance(domain)
balance = c + u + x