forgot 8 decimals

This commit is contained in:
Sebastian Grewe 2013-06-06 23:34:02 +02:00
parent 4acf119418
commit 3f8a1ea0f7

View File

@ -44,7 +44,7 @@ verbose("ID\tUsername\tInvalid\tValid\t\tPPS Value\t\t\tPayout\t\tDonation\tFee\
foreach ($aAccountShares as $aData) { foreach ($aAccountShares as $aData) {
// Take our valid shares and multiply by per share value // Take our valid shares and multiply by per share value
$aData['payout'] = number_format(round($aData['valid'] * $pps_value, 8)); $aData['payout'] = number_format(round($aData['valid'] * $pps_value, 8), 8);
// Defaults // Defaults
$aData['fee' ] = 0; $aData['fee' ] = 0;