We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8c0d1c commit 689b747Copy full SHA for 689b747
src/net_processing.cpp
@@ -420,7 +420,7 @@ struct CNodeState {
420
//! Whether we've started headers synchronization with this peer.
421
bool fSyncStarted{false};
422
//! When to potentially disconnect peer for stalling headers download
423
- std::chrono::microseconds m_headers_sync_timeout{0us};
+ std::chrono::microseconds m_headers_sync_timeout GUARDED_BY(NetEventsInterface::g_msgproc_mutex){0us};
424
//! Since when we're stalling block download progress (in microseconds), or 0.
425
std::chrono::microseconds m_stalling_since{0us};
426
std::list<QueuedBlock> vBlocksInFlight;
0 commit comments