mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-11 07:17:53 +00:00
Fixed issue 76 -- RPC error where addresses from addressbook's sending tab appear in listaccounts
This commit is contained in:
parent
57b7fe4e6f
commit
0a4cb86976
7
rpc.cpp
7
rpc.cpp
@ -1150,8 +1150,11 @@ Value listaccounts(const Array& params, bool fHelp)
|
||||
CRITICAL_BLOCK(cs_mapWallet)
|
||||
CRITICAL_BLOCK(cs_mapAddressBook)
|
||||
{
|
||||
foreach(const PAIRTYPE(string, string)& entry, mapAddressBook)
|
||||
mapAccountBalances[entry.second] = 0;
|
||||
foreach(const PAIRTYPE(string, string)& entry, mapAddressBook) {
|
||||
uint160 hash160;
|
||||
if(AddressToHash160(entry.first, hash160) && mapPubKeys.count(hash160)) // This address belongs to me
|
||||
mapAccountBalances[entry.second] = 0;
|
||||
}
|
||||
|
||||
for (map<uint256, CWalletTx>::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user