1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-02-02 01:44:23 +00:00

miner.php format new Work Utility and Diff1 Shares

This commit is contained in:
Kano 2012-08-19 22:12:28 +10:00
parent 9210abdf60
commit b4eb32749d

View File

@ -617,6 +617,7 @@ function fmt($section, $name, $value, $when, $alldata)
case 'PGA.Utility':
case 'DEVS.Utility':
case 'SUMMARY.Utility':
case 'SUMMARY.Work Utility':
case 'total.Utility':
$ret = $value.'/m';
if ($value == 0)
@ -732,6 +733,8 @@ function fmt($section, $name, $value, $when, $alldata)
case 'SUMMARY.Discarded':
case 'POOL.Discarded':
case 'total.Discarded':
case 'POOL.Diff1 Shares':
case 'total.Diff1 Shares':
$parts = explode('.', $value, 2);
if (count($parts) == 1)
$dec = '';
@ -818,7 +821,8 @@ $singlerigsum = array(
'devs' => array('MHS av' => 1, 'MHS 5s' => 1, 'Accepted' => 1, 'Rejected' => 1,
'Hardware Errors' => 1, 'Utility' => 1, 'Total MH' => 1),
'pools' => array('Getworks' => 1, 'Accepted' => 1, 'Rejected' => 1, 'Discarded' => 1,
'Stale' => 1, 'Get Failures' => 1, 'Remote Failures' => 1),
'Stale' => 1, 'Get Failures' => 1, 'Remote Failures' => 1,
'Diff1 Shares' => 1),
'notify' => array('*' => 1));
#
function showtotal($total, $when, $oldvalues)