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 99022f51bcf591d42fd101dbe9611dca0af9f641
 (DIR) parent f1a7473ae2d12996e92b3a7975c969d5e1cd4d92
 (HTM) Author: ThomasV <thomasv@gitorious>
       Date:   Sun,  4 Nov 2012 11:36:08 +0100
       
       fix: get_tx_value
       
       Diffstat:
         M electrum                            |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/electrum b/electrum
       t@@ -481,7 +481,7 @@ if __name__ == '__main__':
                b = 0 
                for line in lines:
                    import datetime
       -            v = line['value'] 
       +            v = wallet.get_tx_value(line['tx_hash'])
                    b += v
                    try:
                        time_str = str( datetime.datetime.fromtimestamp( line['timestamp']))