URI: 
       tfix transaction broadcast - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 9d6a386f97af0037e398b9795859aa1fa3436e59
   DIR parent 3ee5561488f923a52d91b0989e24a985863d7836
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Sun,  1 Apr 2012 12:38:01 +0200
       
       fix transaction broadcast
       
       Diffstat:
         M client/version.py                   |       2 +-
         M client/wallet.py                    |       2 +-
       
       2 files changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/client/version.py b/client/version.py
       t@@ -1,2 +1,2 @@
       -ELECTRUM_VERSION = "0.43"
       +ELECTRUM_VERSION = "0.43a"
        SEED_VERSION = 4  # bump this everytime the seed generation is modified
   DIR diff --git a/client/wallet.py b/client/wallet.py
       t@@ -780,7 +780,7 @@ class Wallet:
            def sendtx(self, tx):
                tx_hash = Hash(tx.decode('hex') )[::-1].encode('hex')
                self.tx_event.clear()
       -        self.interface.send([('transaction.broadcast', [tx])])
       +        self.interface.send([('blockchain.transaction.broadcast', [tx])])
                self.tx_event.wait()
                out = self.tx_result 
                if out != tx_hash: