electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 2321cb9bb36dbee442a88378b26bec0bebadc5df
parent 1f13b2f4f3e628aafa5058edaf2e46af77e31811
Author: ThomasV <thomasv@gitorious>
Date:   Mon, 11 Nov 2013 16:23:17 +0100

print less debug messages

Diffstat:
Mlib/verifier.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/verifier.py b/lib/verifier.py @@ -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: