Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: replace RecursiveMutex
m_most_recent_block_mutex
with Mutex
In each of the critical sections, only the the guarded variables are accessed, without any chance that within one section another one is called. Hence, we can use an ordinary Mutex instead of RecursiveMutex.
- Loading branch information