From d33c300d5058301d29896ebf99ba54e1e0c068f3 Mon Sep 17 00:00:00 2001 From: Sebastian Grewe Date: Mon, 6 May 2013 21:18:43 +0200 Subject: [PATCH] removed hard coded block difficulty --- public/include/pages/statistics/pool.inc.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/public/include/pages/statistics/pool.inc.php b/public/include/pages/statistics/pool.inc.php index 36deb74f..2434ad8d 100644 --- a/public/include/pages/statistics/pool.inc.php +++ b/public/include/pages/statistics/pool.inc.php @@ -14,9 +14,6 @@ if ($bitcoin->can_connect() === true){ $_SESSION['POPUP'][] = array('CONTENT' => 'Unable to connect to pushpool service: ' . $bitcoin->can_connect(), 'TYPE' => 'errormsg'); } -// TODO: For testing -$dDifficulty = 396; - // Top 15 hashrate list $stmt = $mysqli->prepare("SELECT username, id, hashrate FROM webUsers WHERE hashrate != '0' ORDER BY hashrate DESC LIMIT 15"); $stmt->execute();