mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
[net] Make cs_inventory a non-recursive mutex
cs_inventory is never taken recursively. Make it a non-recursive mutex.
This commit is contained in:
parent
344e831de5
commit
3556227ddd
1 changed files with 1 additions and 1 deletions
|
@ -803,7 +803,7 @@ public:
|
|||
// There is no final sorting before sending, as they are always sent immediately
|
||||
// and in the order requested.
|
||||
std::vector<uint256> vInventoryBlockToSend GUARDED_BY(cs_inventory);
|
||||
RecursiveMutex cs_inventory;
|
||||
Mutex cs_inventory;
|
||||
|
||||
struct TxRelay {
|
||||
mutable RecursiveMutex cs_filter;
|
||||
|
|
Loading…
Reference in a new issue