tfix: get_tx_value - electrum - Electrum Bitcoin wallet
 (HTM) git clone https://git.parazyd.org/electrum
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
       ---
 (DIR) commit 4788ea62de16e90f81e3bc2ce3557b5b340114cb
 (DIR) parent 99022f51bcf591d42fd101dbe9611dca0af9f641
 (HTM) Author: ThomasV <thomasv@gitorious>
       Date:   Sun,  4 Nov 2012 11:38:09 +0100
       
       fix: get_tx_value
       
       Diffstat:
         M lib/gui_text.py                     |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/lib/gui_text.py b/lib/gui_text.py
       t@@ -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']))