Skip to content

Commit a70d6af

Browse files
committed
Merge pull request #2046 from LucasJones/development
Fix bug in admin dashboard
2 parents bd8ae40 + dbba22c commit a70d6af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/include/pages/admin/wallet.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
$dAccountAddresses = array();
1919
foreach($dWalletAccounts as $key => $value)
2020
{
21-
$dAccountAddresses[$key] = $bitcoin->getaddressesbyaccount($key);
21+
$dAccountAddresses[$key] = $bitcoin->getaddressesbyaccount((string)$key);
2222
}
2323

2424
$aGetInfo = $bitcoin->getinfo();

0 commit comments

Comments
 (0)