aboutsummaryrefslogtreecommitdiff
path: root/src/net.h
diff options
context:
space:
mode:
authorw0xlt <94266259+w0xlt@users.noreply.github.com>2022-01-20 17:30:12 -0300
committerw0xlt <94266259+w0xlt@users.noreply.github.com>2022-01-20 17:34:48 -0300
commitdec787d8ac2e8fb42db87431dd622bf44897bc4e (patch)
treebd9a6b18491e1e57c7e1602c80a66564f3c407d8 /src/net.h
parent93609c1dfad70961697d0d12bf01cd34b8ceb6c8 (diff)
downloadbitcoin-dec787d8ac2e8fb42db87431dd622bf44897bc4e.tar.xz
refactor: replace RecursiveMutex `m_addr_local_mutex` with Mutex
Diffstat (limited to 'src/net.h')
-rw-r--r--src/net.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.h b/src/net.h
index e8534f8197..2b1b0d1698 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);