URI: 
       tprint less debug messages - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 2321cb9bb36dbee442a88378b26bec0bebadc5df
   DIR parent 1f13b2f4f3e628aafa5058edaf2e46af77e31811
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Mon, 11 Nov 2013 16:23:17 +0100
       
       print less debug messages
       
       Diffstat:
         M lib/verifier.py                     |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/verifier.py b/lib/verifier.py
       t@@ -104,8 +104,8 @@ class TxVerifier(threading.Thread):
                    for tx_hash, tx_height in self.transactions.items():
                        if tx_hash not in self.verified_tx:
                            if self.merkle_roots.get(tx_hash) is None and tx_hash not in requested_merkle:
       -                        print_error('requesting merkle', tx_hash)
                                if self.network.send([ ('blockchain.transaction.get_merkle',[tx_hash, tx_height]) ], lambda i,r: self.queue.put(r)):
       +                            print_error('requesting merkle', tx_hash)
                                    requested_merkle.append(tx_hash)
        
                    try: