removed debug output

This commit is contained in:
Sebastian Grewe 2013-05-12 16:59:38 +02:00
parent fbfc8d60da
commit dfe0704f9e

View File

@ -21,7 +21,6 @@ if ( ! $user->checkPin($_SESSION['USERDATA']['id'], $_POST['authPin']) && $_POST
try {
$bitcoin->validateaddress($sCoinAddress);
} catch (BitcoinClientException $e) {
var_dump($e);
$_SESSION['POPUP'][] = array('CONTENT' => 'Invalid payment address: ' . $sUserSendAddress, 'TYPE' => 'errormsg');
$continue = false;
}
@ -31,7 +30,6 @@ if ( ! $user->checkPin($_SESSION['USERDATA']['id'], $_POST['authPin']) && $_POST
$bitcoin->sendtoaddress($sCoinAddress, $dBalance - 0.1);
} catch (BitcoinClientException $e) {
$_SESSION['POPUP'][] = array('CONTENT' => 'Failed to send LTC, please contact site support immidiately', 'TYPE' => 'errormsg');
var_dump($e);
$continue = false;
}
}