Skip to content

Commit

Permalink
[FIX] Wallet Balance Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iAmShorty committed Feb 19, 2014
1 parent 8cb42aa commit e16db60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/include/pages/admin/wallet.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
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);
Expand Down

0 comments on commit e16db60

Please sign in to comment.