mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-09-21 02:19:47 +00:00
46 lines
793 B
PHP
46 lines
793 B
PHP
<?php
|
|
|
|
$algo = user()->getState('yaamp-algo');
|
|
|
|
$s = 24*60*60;
|
|
$t = time() - 60*24*60*60;
|
|
$stats = getdbolist('db_hashstats', "time>$t and algo=:algo", array(':algo'=>$algo));
|
|
|
|
$algo_unit_factor = yaamp_algo_mBTC_factor($algo);
|
|
|
|
$res = array();
|
|
foreach($stats as $n)
|
|
{
|
|
if(!$s) continue;
|
|
$i = floor($n->time/$s)*$s;
|
|
|
|
if(!isset($res[$i]))
|
|
{
|
|
$res[$i] = array();
|
|
$res[$i]['earnings'] = 0;
|
|
$res[$i]['hashrate'] = 0;
|
|
}
|
|
|
|
$res[$i]['earnings'] += $n->earnings;
|
|
$res[$i]['hashrate'] += $n->hashrate/24;
|
|
}
|
|
|
|
echo '[';
|
|
|
|
$started = false;
|
|
foreach($res as $i=>$n)
|
|
{
|
|
if(!$n['hashrate']) continue;
|
|
|
|
$m = bitcoinvaluetoa($n['earnings'] * $algo_unit_factor * 1000000 / $n['hashrate']);
|
|
$d = date('Y-m-d H:i:s', $i);
|
|
|
|
if($started) echo ',';
|
|
echo "[\"$d\",$m]";
|
|
|
|
$started = true;
|
|
}
|
|
|
|
echo ']';
|
|
|
|
|