mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-08 22:08:00 +00:00
Merge pull request #336 from erqan/listwalletuser
excluding groups from userlist
This commit is contained in:
commit
c4b0558e46
@ -172,7 +172,8 @@ Value listwalletusers(const Array& params, bool fHelp)
|
||||
LOCK(pwalletMain->cs_wallet);
|
||||
BOOST_FOREACH(const PAIRTYPE(CKeyID, CKeyMetadata)& item, pwalletMain->mapKeyMetadata)
|
||||
{
|
||||
ret.push_back(item.second.username);
|
||||
if (item.second.username[0] != '*')
|
||||
ret.push_back(item.second.username);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user