net: Remove unused cs_feeFilter

This commit is contained in:
MarcoFalke
2020-04-29 21:29:40 +02:00
parent 42675e7833
commit fad1f0fd33
3 changed files with 4 additions and 15 deletions

View File

@@ -573,9 +573,8 @@ public:
std::atomic<std::chrono::seconds> m_last_mempool_req{0s};
std::chrono::microseconds nNextInvSend{0};
RecursiveMutex cs_feeFilter;
// Minimum fee rate with which to filter inv's to this node
CAmount minFeeFilter GUARDED_BY(cs_feeFilter){0};
/** Minimum fee rate with which to filter inv's to this node */
std::atomic<CAmount> minFeeFilter{0};
CAmount lastSentFeeFilter{0};
int64_t nextSendTimeFeeFilter{0};
};