[FIX] Reset TX and RPCTX Ids

This commit is contained in:
Sebastian Grewe 2014-01-27 10:39:19 +01:00
parent 1cd9352952
commit 227a7c33de

View File

@ -41,6 +41,8 @@ if ($setting->getValue('disable_manual_payouts') != 1) {
$log->logInfo("\tStarting Manual Payments...");
$log->logInfo("\tAccount ID\tUsername\tBalance\t\tCoin Address");
foreach ($aPayouts as $aData) {
$transaction_id = NULL;
$rpc_txid = NULL;
$aBalance = $transaction->getBalance($aData['account_id']);
$dBalance = $aBalance['confirmed'];
$aData['coin_address'] = $user->getCoinAddress($aData['account_id']);
@ -126,6 +128,8 @@ if ($setting->getValue('disable_auto_payouts') != 1) {
$log->logInfo("Starting Payments...");
$log->logInfo("\tUserID\tUsername\tBalance\tThreshold\tAddress");
foreach ($users as $aUserData) {
$transaction_id = NULL;
$rpc_txid = NULL;
$dBalance = $aUserData['confirmed'];
// Validate address against RPC
try {