[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:
John Newbery 2020-06-20 23:17:29 -04:00
parent 344e831de5
commit 3556227ddd

View file

@ -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;