From 3a0d0f016bcad50fdcc41b0c07fb01e823f70fda Mon Sep 17 00:00:00 2001 From: Sebastian Grewe Date: Tue, 7 Jan 2014 09:43:10 +0100 Subject: [PATCH] [ADDED] Payout fail hint: Wallet covers balance? --- cronjobs/payouts.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cronjobs/payouts.php b/cronjobs/payouts.php index 0c4ac0d3..b3840fef 100755 --- a/cronjobs/payouts.php +++ b/cronjobs/payouts.php @@ -68,7 +68,7 @@ if ($setting->getValue('disable_manual_payouts') != 1) { try { $txid = $bitcoin->sendtoaddress($aData['coin_address'], $dBalance - $config['txfee']); } catch (BitcoinClientException $e) { - $log->logError('Failed to send requested balance to coin address, please check payout process'); + $log->logError('Failed to send requested balance to coin address, please check payout process. Does the wallet cover the amount?'); continue; } @@ -132,7 +132,7 @@ if ($setting->getValue('disable_auto_payouts') != 1) { try { $txid = $bitcoin->sendtoaddress($aUserData['coin_address'], $dBalance - $config['txfee']); } catch (BitcoinClientException $e) { - $log->logError('Failed to send requested balance to coin address, please check payout process'); + $log->logError('Failed to send requested balance to coin address, please check payout process. Does the wallet cover the amount?'); continue; }