fix syntax error in lite gui and get_default_label
authorthomasv <thomasv@gitorious>
Mon, 5 Nov 2012 09:42:57 +0000 (10:42 +0100)
committerthomasv <thomasv@gitorious>
Mon, 5 Nov 2012 09:42:57 +0000 (10:42 +0100)
lib/gui_lite.py
lib/gui_qt.py

index e7e9e65..d2175c2 100644 (file)
@@ -439,9 +439,10 @@ class MiniWindow(QDialog):
 
     def update_history(self, tx_history):
         for tx in tx_history[-10:]:
-            address = tx["default_label"]
-            value = self.actuator.wallet.get_tx_value(tx['tx_hash'])
-            amount = D(value / 10**8
+            tx_hash = tx['tx_hash']
+            address = self.actuator.wallet.get_default_label(tx_hash)
+            value = self.actuator.wallet.get_tx_value(tx_hash)
+            amount = D(value / 10**8)
             self.history_list.append(address, amount)
 
     def acceptbit(self):
index c4d9613..e98225d 100644 (file)
@@ -380,7 +380,7 @@ class ElectrumWindow(QMainWindow):
             item.setForeground(2, QBrush(QColor('black')))
         else:
             if s: self.wallet.labels.pop(tx_hash)
-            text = tx['default_label']
+            text = self.wallet.get_default_label(tx_hash)
             item.setText(2, text)
             item.setForeground(2, QBrush(QColor('gray')))
         self.is_edit=False