mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-11 04:12:36 -03:00
refactor: Use Mutex type for g_cs_recent_confirmed_transactions
This commit is contained in:
parent
67881de0e3
commit
1307686798
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ namespace {
|
||||||
* We use this to avoid requesting transactions that have already been
|
* We use this to avoid requesting transactions that have already been
|
||||||
* confirnmed.
|
* confirnmed.
|
||||||
*/
|
*/
|
||||||
RecursiveMutex g_cs_recent_confirmed_transactions;
|
Mutex g_cs_recent_confirmed_transactions;
|
||||||
std::unique_ptr<CRollingBloomFilter> g_recent_confirmed_transactions GUARDED_BY(g_cs_recent_confirmed_transactions);
|
std::unique_ptr<CRollingBloomFilter> g_recent_confirmed_transactions GUARDED_BY(g_cs_recent_confirmed_transactions);
|
||||||
|
|
||||||
/** Blocks that are in flight, and that are in the queue to be downloaded. */
|
/** Blocks that are in flight, and that are in the queue to be downloaded. */
|
||||||
|
|
Loading…
Reference in a new issue