diff --git a/scripts/validate_payouts.php b/scripts/validate_payouts.php index adbc7ce5..1df7ccee 100755 --- a/scripts/validate_payouts.php +++ b/scripts/validate_payouts.php @@ -54,8 +54,8 @@ $found=0; $notfound=0; // Output mask and header -$mask = "| %-15.15s | %-34.34s | %20.20s | %10.10s | %-64.64s |" . PHP_EOL; -printf($mask, 'Username', 'Address', 'Amount', 'Status', 'TXID'); +$mask = "| %15.15s | %-15.15s | %-34.34s | %20.20s | %10.10s | %-64.64s |" . PHP_EOL; +printf($mask, 'TX-DB-ID', 'Username', 'Address', 'Amount', 'Status', 'TX-RPC-ID'); // Loop through our DB records foreach ($aAllDebitTxs as $aDebitTx) { @@ -77,7 +77,7 @@ foreach ($aAllDebitTxs as $aDebitTx) { } } if (!$bFound) $status = 'MISSING'; - printf($mask, $aDebitTx['username'], $aDebitTx['coin_address'], $aDebitTx['amount'], $status, $txid); + printf($mask, $aDebitTx['id'], $aDebitTx['username'], $aDebitTx['coin_address'], $aDebitTx['amount'], $status, $txid); } // Small summary