diff options
author | João Barbosa <joao.paulo.barbosa@gmail.com> | 2020-08-29 15:26:39 +0100 |
---|---|---|
committer | João Barbosa <joao.paulo.barbosa@gmail.com> | 2021-09-03 18:28:12 +0100 |
commit | 32d036e8dab5f5b24096d9765236441e7b6a3b34 (patch) | |
tree | 396c6cbc499808a223a215e424d108f9ed6a2a10 /src/wallet/wallet.h | |
parent | 5fb6701bdb05f935ab65d8fe0fcc15c12e32d134 (diff) |
wallet: GetLabelAddresses requires cs_wallet lock
No change in behavior, the lock is already held at call sites.
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r-- | src/wallet/wallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index fbeec2aa30..48efbbfde6 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -630,7 +630,7 @@ public: int64_t GetOldestKeyPoolTime() const; - std::set<CTxDestination> GetLabelAddresses(const std::string& label) const; + std::set<CTxDestination> GetLabelAddresses(const std::string& label) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet); /** * Marks all outputs in each one of the destinations dirty, so their cache is |