mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-09 10:43:19 -05: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
Reference in a new issue