* [ADDED] New statistic method to fetch all user mining stats * [ADDED] New global cache to getUserHash/Sharerate calls * [ADDED] New memcache key for new global cache Addresses #1471 and may fix it already if no other changes are required.
10 lines
307 B
PHP
10 lines
307 B
PHP
<?php
|
|
|
|
// Make sure we are called from index.php
|
|
if (!defined('SECURITY')) die('Hacking attempt');
|
|
|
|
define('STATISTICS_ALL_USER_SHARES', 'STATISTICS_ALL_USER_SHARES');
|
|
define('STATISTICS_ALL_USER_HASHRATES', 'STATISTICS_ALL_USER_HASHRATES');
|
|
define('STATISTICS_ROUND_SHARES', 'STATISTICS_ROUND_SHARES');
|
|
?>
|