diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-06-13 10:30:28 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-06-13 10:30:31 -0400 |
commit | eac65d99ddb27061e6ae0f9448887db86e2c0734 (patch) | |
tree | afa81076accd6b9744a465929da9cf41e68930b1 /src/wallet/wallet.cpp | |
parent | 265492723a6874abc542361e4693840240e7d2ef (diff) | |
parent | ccf1f6ea24905876f35e685204cb2293cf083e97 (diff) |
Merge #19261: refactor: Drop ::HasWallets()
ccf1f6ea24905876f35e685204cb2293cf083e97 refactor: Drop ::HasWallets() (João Barbosa)
Pull request description:
Minor follow-up of #19250. The global `HasWallets()` is used only once and at the call site there's already a way to know if any wallet is loaded.
ACKs for top commit:
MarcoFalke:
ACK ccf1f6ea24905876f35e685204cb2293cf083e97
hebasto:
ACK ccf1f6ea24905876f35e685204cb2293cf083e97, I have reviewed the changes and they look OK, I agree they can be merged.
Tree-SHA512: fb902c045cbd331eaf71716c04734520f2ce7f2b317db510c4ce140162bbc683327b5a40ac860f6cde5add37e069065274d39dfa147fac2091eedec505f2f7eb
Diffstat (limited to 'src/wallet/wallet.cpp')
-rw-r--r-- | src/wallet/wallet.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index a59aa8b980..5f318f92ad 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -77,12 +77,6 @@ bool RemoveWallet(const std::shared_ptr<CWallet>& wallet) return true; } -bool HasWallets() -{ - LOCK(cs_wallets); - return !vpwallets.empty(); -} - std::vector<std::shared_ptr<CWallet>> GetWallets() { LOCK(cs_wallets); |