diff --git a/public/include/classes/transaction.class.php b/public/include/classes/transaction.class.php index 58646a4e..6da0ee49 100644 --- a/public/include/classes/transaction.class.php +++ b/public/include/classes/transaction.class.php @@ -44,7 +44,6 @@ class Transaction extends Base { OR ( t.account_id = ? AND t.id <= ? AND t.type IN ( 'Credit_PPS', 'Donation_PPS', 'Fee_PPS', 'TXFee', 'Debit_MP', 'Debit_AP' ) )"); if ($this->checkStmt($stmt) && $stmt->bind_param('iiiii', $account_id, $txid, $this->config['confirmations'], $account_id, $txid) && $stmt->execute()) return true; - echo 'Fail: ' . $this->mysqli->error; return false; }