URI: 
       tbugfix: add channel when calling send - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 1f37a330b36539d38dd8f4347a38b6691b2595c0
   DIR parent b78fd6b3b69ef315991b35058af58f0a700090eb
  HTML Author: thomasv <thomasv@gitorious>
       Date:   Fri, 26 Oct 2012 16:06:54 +0200
       
       bugfix: add channel when calling send
       
       Diffstat:
         M lib/wallet.py                       |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/lib/wallet.py b/lib/wallet.py
       t@@ -592,7 +592,7 @@ class Wallet:
                # asynchronous
                self.tx_event.clear()
                tx_hash = Hash(tx.decode('hex') )[::-1].encode('hex')
       -        self.interface.send([('blockchain.transaction.broadcast', [tx])])
       +        self.interface.send([('blockchain.transaction.broadcast', [tx])], 'synchronizer')
                return tx_hash
        
            def receive_tx(self,tx_hash):
       t@@ -896,7 +896,7 @@ class WalletSynchronizer(threading.Thread):
                    if method == 'blockchain.address.subscribe':
                        addr = params[0]
                        if self.wallet.get_status(addr) != result:
       -                    self.interface.send([('blockchain.address.get_history', [addr] )])
       +                    self.interface.send([('blockchain.address.get_history', [addr])], 'synchronizer')
                                    
                    elif method == 'blockchain.address.get_history':
                        addr = params[0]