You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.5 KiB
58 lines
1.5 KiB
10 years ago
|
<?php
|
||
|
#
|
||
|
function dompayouts($data, $user)
|
||
|
{
|
||
|
$pg = '<h1>Mining Payouts</h1>';
|
||
|
|
||
|
$ans = getMPayouts($user);
|
||
|
|
||
|
$pg .= "<table callpadding=0 cellspacing=0 border=0>\n";
|
||
|
$pg .= "<tr class=title>";
|
||
|
$pg .= "<td class=dr>Block</td>";
|
||
|
$pg .= "<td class=dr>Miner Reward</td>";
|
||
|
$pg .= "<td class=dr>Payout Diff</td>";
|
||
|
$pg .= "<td class=dr>Elapsed</td>";
|
||
|
$pg .= "<td class=dr>Your %</td>";
|
||
|
$pg .= "<td class=dr>Your Diff</td>";
|
||
|
$pg .= "<td class=dr>Your Avg Hs</td>";
|
||
|
$pg .= "<td class=dr>Your BTC</td>";
|
||
|
$pg .= "</tr>\n";
|
||
|
if ($ans['STATUS'] == 'ok')
|
||
|
{
|
||
|
$count = $ans['rows'];
|
||
|
for ($i = 0; $i < $count; $i++)
|
||
|
{
|
||
|
if (($i % 2) == 0)
|
||
|
$row = 'even';
|
||
|
else
|
||
|
$row = 'odd';
|
||
|
|
||
|
$pg .= "<tr class=$row>";
|
||
|
$pg .= '<td class=dr>'.$ans['height:'.$i].'</td>';
|
||
|
$pg .= '<td class=dr>'.btcfmt($ans['minerreward:'.$i]).'</td>';
|
||
|
$diffused = $ans['diffused:'.$i];
|
||
|
$pg .= '<td class=dr>'.difffmt($diffused).'</td>';
|
||
|
$elapsed = $ans['elapsed:'.$i];
|
||
|
$pg .= '<td class=dr>'.howmanyhrs($elapsed).'</td>';
|
||
|
$diffacc = $ans['diffacc:'.$i];
|
||
|
$ypct = $diffacc * 100 / $diffused;
|
||
|
$pg .= '<td class=dr>'.number_format($ypct, 2).'%</td>';
|
||
|
$pg .= '<td class=dr>'.difffmt($diffacc).'</td>';
|
||
|
$hr = $diffacc * pow(2,32) / $elapsed;
|
||
|
$pg .= '<td class=dr>'.dsprate($hr).'</td>';
|
||
|
$pg .= '<td class=dr>'.btcfmt($ans['amount:'.$i]).'</td>';
|
||
|
$pg .= "</tr>\n";
|
||
|
}
|
||
|
}
|
||
|
$pg .= "</table>\n";
|
||
|
|
||
|
return $pg;
|
||
|
}
|
||
|
#
|
||
|
function show_mpayouts($info, $page, $menu, $name, $user)
|
||
|
{
|
||
|
gopage($info, NULL, 'dompayouts', $page, $menu, $name, $user);
|
||
|
}
|
||
|
#
|
||
|
?>
|