From e16db6071ef4fb4fcb23419e05bde8e100949577 Mon Sep 17 00:00:00 2001 From: iAmShorty Date: Wed, 19 Feb 2014 09:45:35 +0100 Subject: [PATCH] [FIX] Wallet Balance Fix --- public/include/pages/admin/wallet.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/include/pages/admin/wallet.inc.php b/public/include/pages/admin/wallet.inc.php index 2e150bc9..216f489c 100644 --- a/public/include/pages/admin/wallet.inc.php +++ b/public/include/pages/admin/wallet.inc.php @@ -10,7 +10,7 @@ if (!$user->isAuthenticated() || !$user->isAdmin($_SESSION['USERDATA']['id'])) { if (!$smarty->isCached('master.tpl', $smarty_cache_key)) { $debug->append('No cached version available, fetching from backend', 3); if ($bitcoin->can_connect() === true){ - $dBalance = $bitcoin->getbalance(); + $dBalance = $bitcoin->getrealbalance(); $dWalletAccounts = $bitcoin->listaccounts(); $dAddressCount = count($dWalletAccounts);