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.
		
		
		
		
		
			
		
			
				
					
					
						
							60 lines
						
					
					
						
							1.6 KiB
						
					
					
				
			
		
		
	
	
							60 lines
						
					
					
						
							1.6 KiB
						
					
					
				<?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>N Diff</td>"; | 
						|
 $pg .= "<td class=dr>N Range</td>"; | 
						|
 $pg .= "<td class=dr>Pool N Avg</td>"; | 
						|
 $pg .= "<td class=dr>Your %</td>"; | 
						|
 $pg .= "<td class=dr>Your N Diff</td>"; | 
						|
 $pg .= "<td class=dr>Your N Avg</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>'; | 
						|
		$phr = $diffused * pow(2,32) / $elapsed; | 
						|
		$pg .= '<td class=dr>'.siprefmt($phr).'Hs</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); | 
						|
} | 
						|
# | 
						|
?>
 | 
						|
 |