mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-07 17:00:32 +02:00
refactor: Make m_cs_fee_estimator non-recursive
This commit is contained in:
@ -238,7 +238,7 @@ public:
|
|||||||
EXCLUSIVE_LOCKS_REQUIRED(!m_cs_fee_estimator);
|
EXCLUSIVE_LOCKS_REQUIRED(!m_cs_fee_estimator);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
mutable RecursiveMutex m_cs_fee_estimator;
|
mutable Mutex m_cs_fee_estimator;
|
||||||
|
|
||||||
unsigned int nBestSeenHeight GUARDED_BY(m_cs_fee_estimator);
|
unsigned int nBestSeenHeight GUARDED_BY(m_cs_fee_estimator);
|
||||||
unsigned int firstRecordedHeight GUARDED_BY(m_cs_fee_estimator);
|
unsigned int firstRecordedHeight GUARDED_BY(m_cs_fee_estimator);
|
||||||
|
Reference in New Issue
Block a user