1
mirror of https://github.com/bitcoin/bitcoin synced 2024-09-28 15:42:24 +02:00

doc: Add non-thread-safe note to FeeFilterRounder::round()

Co-authored-by: MarcoFalke <falke.marco@gmail.com>
This commit is contained in:
Hennadii Stepanov 2020-07-05 13:46:38 +03:00
parent 8783bcc099
commit d842e6ac96
No known key found for this signature in database
GPG Key ID: 410108112E7EA81F

View File

@ -273,7 +273,7 @@ public:
/** Create new FeeFilterRounder */
explicit FeeFilterRounder(const CFeeRate& minIncrementalFee);
/** Quantize a minimum fee for privacy purpose before broadcast **/
/** Quantize a minimum fee for privacy purpose before broadcast. Not thread-safe due to use of FastRandomContext */
CAmount round(CAmount currentMinFee);
private: