From 8c277b19c8f262e550cffe263e6d910b687ac882 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Fri, 21 May 2021 10:53:05 +0300 Subject: [PATCH] refactor: Make m_cs_fee_estimator non-recursive --- src/policy/fees.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/policy/fees.h b/src/policy/fees.h index fdbf9569306..c05cabadf94 100644 --- a/src/policy/fees.h +++ b/src/policy/fees.h @@ -238,7 +238,7 @@ public: EXCLUSIVE_LOCKS_REQUIRED(!m_cs_fee_estimator); private: - mutable RecursiveMutex m_cs_fee_estimator; + mutable Mutex m_cs_fee_estimator; unsigned int nBestSeenHeight GUARDED_BY(m_cs_fee_estimator); unsigned int firstRecordedHeight GUARDED_BY(m_cs_fee_estimator);