#!/usr/bin/php getAllUserShares() ) $log->logError('getAllUserShares update failed'); $log->logInfo("getAllUserShares " . number_format(microtime(true) - $start, 2) . " seconds"); // Get all user hashrate statistics for caching $start = microtime(true); if ( ! $statistics->getAllUserMiningStats() ) $log->logError('getAllUserMiningStats update failed'); $log->logInfo("getAllUserMiningStats " . number_format(microtime(true) - $start, 2) . " seconds"); $start = microtime(true); if (!$statistics->getTopContributors('hashes')) $log->logError("getTopContributors hashes update failed"); $log->logInfo("getTopContributors hashes " . number_format(microtime(true) - $start, 2) . " seconds"); $start = microtime(true); if (!$statistics->getCurrentHashrate()) $log->logError("getCurrentHashrate update failed"); $log->logInfo("getCurrentHashrate " . number_format(microtime(true) - $start, 2) . " seconds"); require_once('cron_end.inc.php'); ?>