From 174bfdc0cf4ec06da43a9427e35f2640f001e03d Mon Sep 17 00:00:00 2001 From: obigal Date: Fri, 5 Jul 2013 11:57:16 -0400 Subject: [PATCH] Update pps_payout.php --- cronjobs/pps_payout.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cronjobs/pps_payout.php b/cronjobs/pps_payout.php index bf42be64..2d85867f 100755 --- a/cronjobs/pps_payout.php +++ b/cronjobs/pps_payout.php @@ -44,7 +44,7 @@ if ( $bitcoin->can_connect() === true ){ // Value per share calculation // We need to use this instead when running VARDIFF -// $pps_value = number_format(round(1/(65536 * $dDifficulty) * $config['reward']), 12) ,12); +// $pps_value = number_format(round((1/(65536 * $dDifficulty) * $config['reward']), 12) ,12); if ($config['reward_type'] != 'block') { $pps_value = number_format(round($config['reward'] / (pow(2,32) * $dDifficulty) * pow(2, $config['difficulty']), 12) ,12); } else {