fix syntax error in lite gui and get_default_label

This commit is contained in:
thomasv 2012-11-05 10:42:57 +01:00
parent 73dc533e79
commit 80e97feb47
2 changed files with 5 additions and 4 deletions

View File

@ -439,9 +439,10 @@ class MiniWindow(QDialog):
def update_history(self, tx_history): def update_history(self, tx_history):
for tx in tx_history[-10:]: for tx in tx_history[-10:]:
address = tx["default_label"] tx_hash = tx['tx_hash']
value = self.actuator.wallet.get_tx_value(tx['tx_hash']) address = self.actuator.wallet.get_default_label(tx_hash)
amount = D(value / 10**8 value = self.actuator.wallet.get_tx_value(tx_hash)
amount = D(value / 10**8)
self.history_list.append(address, amount) self.history_list.append(address, amount)
def acceptbit(self): def acceptbit(self):

View File

@ -380,7 +380,7 @@ class ElectrumWindow(QMainWindow):
item.setForeground(2, QBrush(QColor('black'))) item.setForeground(2, QBrush(QColor('black')))
else: else:
if s: self.wallet.labels.pop(tx_hash) 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.setText(2, text)
item.setForeground(2, QBrush(QColor('gray'))) item.setForeground(2, QBrush(QColor('gray')))
self.is_edit=False self.is_edit=False