From 7cc305f1b29e76ccce7dde27076968bd4054d6c9 Mon Sep 17 00:00:00 2001 From: pasta Date: Fri, 22 Mar 2024 11:05:33 -0500 Subject: [PATCH] refactor: RecursiveMutex -> Mutex for cs_mnauth --- src/net.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net.h b/src/net.h index a8f2413ef9..266b11ab65 100644 --- a/src/net.h +++ b/src/net.h @@ -711,7 +711,7 @@ private: const bool m_inbound_onion{false}; // Challenge sent in VERSION to be answered with MNAUTH (only happens between MNs) - mutable RecursiveMutex cs_mnauth; + mutable Mutex cs_mnauth; uint256 sentMNAuthChallenge GUARDED_BY(cs_mnauth); uint256 receivedMNAuthChallenge GUARDED_BY(cs_mnauth); uint256 verifiedProRegTxHash GUARDED_BY(cs_mnauth);