From 4136cc739b5e1237380436be04b39665027a2cff Mon Sep 17 00:00:00 2001 From: Sebastian Grewe Date: Tue, 4 Mar 2014 18:18:53 +0100 Subject: [PATCH] [CHANGE] Show 10 instead of 5 blocks on pool stats --- public/include/pages/statistics/pool.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/include/pages/statistics/pool.inc.php b/public/include/pages/statistics/pool.inc.php index 2af81831..47ba55c4 100644 --- a/public/include/pages/statistics/pool.inc.php +++ b/public/include/pages/statistics/pool.inc.php @@ -24,7 +24,7 @@ if (!$smarty->isCached('master.tpl', $smarty_cache_key)) { $aContributorsHashes = $statistics->getTopContributors('hashes', 15); // Grab the last 5 blocks found as a quick overview - $iLimit = 5; + $iLimit = 10; $aBlocksFoundData = $statistics->getBlocksFound($iLimit); count($aBlocksFoundData) > 0 ? $aBlockData = $aBlocksFoundData[0] : $aBlockData = array();