Browse Source

fix history sorting function

283
thomasv 12 years ago
parent
commit
0c5f42cc29
  1. 2
      lib/wallet.py

2
lib/wallet.py

@ -584,7 +584,7 @@ class Wallet:
def get_tx_history(self):
with self.lock:
history = self.transactions.items()
history.sort(key = lambda x: self.tx_height.get(x[0],1e12) )
history.sort(key = lambda x: self.tx_height.get(x[0]) if self.tx_height.get(x[0]) else 1e12)
result = []
balance = 0

Loading…
Cancel
Save