commit 4788ea62de16e90f81e3bc2ce3557b5b340114cb
parent 99022f51bcf591d42fd101dbe9611dca0af9f641
Author: ThomasV <thomasv@gitorious>
Date: Sun, 4 Nov 2012 11:38:09 +0100
fix: get_tx_value
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/gui_text.py b/lib/gui_text.py
@@ -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']))