[FIX] Incorrectly reporting # of unconfirmed coins

This commit is contained in:
andy 2013-10-13 07:48:06 -07:00
parent b1001950cf
commit 8311dca422

View File

@ -34,7 +34,7 @@ if ( $bitcoin->can_connect() !== true ) {
} }
// Fetch all unconfirmed blocks // Fetch all unconfirmed blocks
$aAllBlocks = $block->getAllUnconfirmed($config['confirmations']); $aAllBlocks = $block->getAllUnconfirmed($config['network_confirmations']);
$log->logInfo("ID\tHeight\tBlockhash\tConfirmations"); $log->logInfo("ID\tHeight\tBlockhash\tConfirmations");
foreach ($aAllBlocks as $iIndex => $aBlock) { foreach ($aAllBlocks as $iIndex => $aBlock) {