diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-10-18 15:38:44 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-10-18 15:44:57 +0200 |
| commit | cdfb7755a6af2e95e8598ca8e8d6896c745bcd72 (patch) | |
| tree | fce0cfa5a1d83ef5f9c6f84a6f0875bf1903323f /src/policy/fees.cpp | |
| parent | Merge #8935: Documentation: Building on Windows with WSL (diff) | |
| parent | Kill insecure_random and associated global state (diff) | |
| download | discoin-cdfb7755a6af2e95e8598ca8e8d6896c745bcd72.tar.xz discoin-cdfb7755a6af2e95e8598ca8e8d6896c745bcd72.zip | |
Merge #8914: Kill insecure_random and associated global state
5eaaa83 Kill insecure_random and associated global state (Wladimir J. van der Laan)
Diffstat (limited to 'src/policy/fees.cpp')
| -rw-r--r-- | src/policy/fees.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/policy/fees.cpp b/src/policy/fees.cpp index 7b0e8b7d0..c07cd2eff 100644 --- a/src/policy/fees.cpp +++ b/src/policy/fees.cpp @@ -594,7 +594,7 @@ FeeFilterRounder::FeeFilterRounder(const CFeeRate& minIncrementalFee) CAmount FeeFilterRounder::round(CAmount currentMinFee) { std::set<double>::iterator it = feeset.lower_bound(currentMinFee); - if ((it != feeset.begin() && insecure_rand() % 3 != 0) || it == feeset.end()) { + if ((it != feeset.begin() && insecure_rand.rand32() % 3 != 0) || it == feeset.end()) { it--; } return *it; |