mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-13 12:33:42 +02:00
p2p: replace RecursiveMutex m_total_bytes_sent_mutex with Mutex
This commit is contained in:
parent
8be75fd0f0
commit
709af67add
1 changed files with 1 additions and 1 deletions
|
|
@ -1068,7 +1068,7 @@ private:
|
|||
static bool NodeFullyConnected(const CNode* pnode);
|
||||
|
||||
// Network usage totals
|
||||
mutable RecursiveMutex m_total_bytes_sent_mutex;
|
||||
mutable Mutex m_total_bytes_sent_mutex;
|
||||
std::atomic<uint64_t> nTotalBytesRecv{0};
|
||||
uint64_t nTotalBytesSent GUARDED_BY(m_total_bytes_sent_mutex) {0};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue