mining taxes invoices

This commit is contained in:
2021-02-25 22:54:12 +09:00
parent d031305111
commit 1451e97f31

View File

@@ -87,7 +87,7 @@ class MiningTaxesInvoices extends Command
//Add up the total price from the ledger rows //Add up the total price from the ledger rows
foreach($rows as $row) { foreach($rows as $row) {
$totalPrice = $totalPrice + $row->price; $totalPrice = $totalPrice + $row->amount;
printf("Current Total: " . $totalPrice . "\r\n"); printf("Current Total: " . $totalPrice . "\r\n");
} }