fix: get_tx_value

This commit is contained in:
ThomasV 2012-11-04 11:38:09 +01:00
parent 99022f51bc
commit 4788ea62de
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ class ElectrumGui:
b = 0
messages = []
for tx in self.wallet.get_tx_history():
v = tx['value']
v = self.wallet.get_tx_value(tx['tx_hash'])
b += v
try:
time_str = str( datetime.datetime.fromtimestamp( tx['timestamp']))