print less debug messages

This commit is contained in:
ThomasV 2013-11-11 16:23:17 +01:00
parent 1f13b2f4f3
commit 2321cb9bb3
1 changed files with 1 additions and 1 deletions

View File

@ -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: