fix history sorting function
authorthomasv <thomasv@gitorious>
Sat, 23 Feb 2013 12:29:03 +0000 (13:29 +0100)
committerthomasv <thomasv@gitorious>
Sat, 23 Feb 2013 12:29:03 +0000 (13:29 +0100)
lib/wallet.py

index c649228..8b5ec2d 100644 (file)
@@ -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