From dec787d8ac2e8fb42db87431dd622bf44897bc4e Mon Sep 17 00:00:00 2001 From: w0xlt <94266259+w0xlt@users.noreply.github.com> Date: Thu, 20 Jan 2022 17:30:12 -0300 Subject: [PATCH] refactor: replace RecursiveMutex `m_addr_local_mutex` with Mutex --- src/net.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net.h b/src/net.h index e8534f8197b..2b1b0d16989 100644 --- a/src/net.h +++ b/src/net.h @@ -694,7 +694,7 @@ private: // Our address, as reported by the peer CService addrLocal GUARDED_BY(m_addr_local_mutex); - mutable RecursiveMutex m_addr_local_mutex; + mutable Mutex m_addr_local_mutex; mapMsgCmdSize mapSendBytesPerMsgCmd GUARDED_BY(cs_vSend); mapMsgCmdSize mapRecvBytesPerMsgCmd GUARDED_BY(cs_vRecv);