From: Forrest Voight Date: Mon, 20 Jan 2014 07:54:47 +0000 (-0500) Subject: print share hashes when share check fails X-Git-Url: https://git.novaco.in/?p=p2pool.git;a=commitdiff_plain;h=8c30d486ead72c55906bbb230e78c2fbf75df4a5 print share hashes when share check fails --- diff --git a/p2pool/data.py b/p2pool/data.py index 0e62a0f..7c44878 100644 --- a/p2pool/data.py +++ b/p2pool/data.py @@ -430,7 +430,7 @@ class OkayTracker(forest.Tracker): try: share.check(self) except: - log.err(None, 'Share check failed:') + log.err(None, 'Share check failed: %064x -> %064x' % (share.hash, share.previous_hash)) return False else: self.verified.add(share)