minor fix: index

This commit is contained in:
ThomasV 2015-05-02 11:21:19 +02:00
parent afa814a444
commit 617fb36b06
1 changed files with 1 additions and 1 deletions

View File

@ -339,7 +339,7 @@ class Plugin(BasePlugin):
tx_info = self.tx_list[str(item.data(0, Qt.UserRole).toPyObject())]
except Exception:
newtx = self.wallet.get_history()
v = newtx[[x[0] for x in newtx].index(str(item.data(0, Qt.UserRole).toPyObject()))][3]
v = newtx[[x[0] for x in newtx].index(str(item.data(0, Qt.UserRole).toPyObject()))][2]
tx_info = {'timestamp':int(time.time()), 'value': v}
pass
tx_time = int(tx_info['timestamp'])