removed debug output

This commit is contained in:
Sebastian Grewe 2013-08-06 09:26:43 +02:00
parent 0b8243ab69
commit d4a9af86c4

View File

@ -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;
}