diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2021-05-21 10:53:05 +0300 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2021-05-21 11:35:47 +0300 |
commit | 8c277b19c8f262e550cffe263e6d910b687ac882 (patch) | |
tree | 4a8366b7ac1a6060dadcd6f3dc53b467fee6e206 /src/policy/fees.h | |
parent | 5ee5b696b588695ff78aaac08d5d85154f1953cf (diff) |
refactor: Make m_cs_fee_estimator non-recursive
Diffstat (limited to 'src/policy/fees.h')
-rw-r--r-- | src/policy/fees.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/policy/fees.h b/src/policy/fees.h index fdbf956930..c05cabadf9 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); |