diff --git a/src/privatesend-util.cpp b/src/privatesend-util.cpp index a1ef639fc..e350ad3c8 100644 --- a/src/privatesend-util.cpp +++ b/src/privatesend-util.cpp @@ -27,12 +27,14 @@ CScript CKeyHolder::GetScriptForDestination() const const CKeyHolder& CKeyHolderStorage::AddKey(CWallet* pwallet) { + LOCK(cs_storage); storage.emplace_back(std::unique_ptr(new CKeyHolder(pwallet))); LogPrintf("CKeyHolderStorage::%s -- storage size %lld\n", __func__, storage.size()); return *storage.back(); } void CKeyHolderStorage::KeepAll(){ + LOCK(cs_storage); if (storage.size() > 0) { for (auto &key : storage) { key->KeepKey(); @@ -44,6 +46,7 @@ void CKeyHolderStorage::KeepAll(){ void CKeyHolderStorage::ReturnAll() { + LOCK(cs_storage); if (storage.size() > 0) { for (auto &key : storage) { key->ReturnKey(); diff --git a/src/privatesend-util.h b/src/privatesend-util.h index f6bfede8a..a6c4535fb 100644 --- a/src/privatesend-util.h +++ b/src/privatesend-util.h @@ -27,6 +27,7 @@ class CKeyHolderStorage { private: std::vector > storage; + mutable CCriticalSection cs_storage; public: const CKeyHolder& AddKey(CWallet* pwalletIn);