From 6c5ca49d46cea44fa23115fa04f5612053221ccb Mon Sep 17 00:00:00 2001 From: Forrest Voight Date: Wed, 22 Feb 2012 13:34:00 -0500 Subject: [PATCH] added tails list to share explorer --- p2pool/web.py | 26 ++++++++++++++++++++++++-- 1 files changed, 24 insertions(+), 2 deletions(-) diff --git a/p2pool/web.py b/p2pool/web.py index 4959cb2..1cbd669 100644 --- a/p2pool/web.py +++ b/p2pool/web.py @@ -279,11 +279,33 @@ def get_web_root(tracker, current_work, current_work2, get_current_txouts, datad return '' request.setHeader('Content-Type', 'text/html') request.write('

P2Pool share explorer

') + request.write('

Verified heads

') request.write('') + + request.write('

Verified tails

') + request.write('') + + request.write('

Heads

') + request.write('') + + request.write('

Tails

') + request.write('') + return '' def getChild(self, child, request): if not child: -- 1.7.1