URI: 
       tfix #1121: tx.update - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 0503e809d5183e40d807e39755c58e627c3c23c9
   DIR parent e3e5d9579476c30da01b79b2e0dc28d2a24727c0
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Wed,  1 Apr 2015 07:57:59 +0200
       
       fix #1121: tx.update
       
       Diffstat:
         M lib/transaction.py                  |       4 ++++
       
       1 file changed, 4 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/lib/transaction.py b/lib/transaction.py
       t@@ -485,6 +485,10 @@ class Transaction:
            def __init__(self, raw):
                self.raw = raw
        
       +    def update(self, raw):
       +        self.raw = raw
       +        self.deserialize()
       +
            def deserialize(self):
                d = deserialize(self.raw)
                self.inputs = d['inputs']