aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/rpcwallet.cpp
diff options
context:
space:
mode:
authorJoão Barbosa <joao.paulo.barbosa@gmail.com>2018-05-03 11:32:57 +0100
committerJoão Barbosa <joao.paulo.barbosa@gmail.com>2018-05-03 11:32:57 +0100
commita59dac35abf64d5af4d499bc3397b3369eb76eda (patch)
treed9c1ece569e94926c998f69b0a1346f098728fb7 /src/wallet/rpcwallet.cpp
parentd76962e05683ebf220996a82312b8e08f07bb4eb (diff)
downloadbitcoin-a59dac35abf64d5af4d499bc3397b3369eb76eda.tar.xz
refactor: Avoid extra lookups of mapAddressBook in listunspent RPC
Diffstat (limited to 'src/wallet/rpcwallet.cpp')
-rw-r--r--src/wallet/rpcwallet.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp
index 5785cf9092..ea294fee3c 100644
--- a/src/wallet/rpcwallet.cpp
+++ b/src/wallet/rpcwallet.cpp
@@ -3171,10 +3171,11 @@ UniValue listunspent(const JSONRPCRequest& request)
if (fValidAddress) {
entry.pushKV("address", EncodeDestination(address));
- if (pwallet->mapAddressBook.count(address)) {
- entry.pushKV("label", pwallet->mapAddressBook[address].name);
+ auto i = pwallet->mapAddressBook.find(address);
+ if (i != pwallet->mapAddressBook.end()) {
+ entry.pushKV("label", i->second.name);
if (IsDeprecatedRPCEnabled("accounts")) {
- entry.pushKV("account", pwallet->mapAddressBook[address].name);
+ entry.pushKV("account", i->second.name);
}
}