From ca2e9d9c5f8d590269ac2bfbc2b4b6175604c603 Mon Sep 17 00:00:00 2001 From: Forrest Voight Date: Thu, 1 Dec 2011 12:18:23 -0500 Subject: [PATCH] corrected head/tail confusion --- p2pool/data.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/p2pool/data.py b/p2pool/data.py index 9d5882c..c3b5a4b 100644 --- a/p2pool/data.py +++ b/p2pool/data.py @@ -587,7 +587,7 @@ class OkayTracker(bitcoin_data.Tracker): if p2pool.DEBUG: - print len(self.verified.tails), "chain tails and", len(self.verified.tails.get(best_tail, [])), 'chain heads. Top 10 tails:' + print len(self.verified.tails), "chain tails and", len(self.verified.tails.get(best_tail, [])), 'chain heads. Top 10 heads:' if len(scores) > 10: print ' ...' for h in scores[-10:]: -- 1.7.1