aboutsummaryrefslogtreecommitdiff
path: root/tests/unit_tests/rolling_median.cpp (follow)
AgeCommit message (Collapse)AuthorFilesLines
2020-07-23Fix overflow issue in epee:misc_utils::rolling_median_t and median(), with ↵koe1-0/+11
unit test
2020-05-06Update copyright year to 2020SomaticFanatic1-1/+1
Update copyright year to 2020
2019-08-15Replace std::random_shuffle with std::shuffleTom Smeding1-1/+1
According to [1], std::random_shuffle is deprecated in C++14 and removed in C++17. Since std::shuffle is available since C++11 as a replacement and monero already requires C++11, this is a good replacement. A cryptographically secure random number generator is used in all cases to prevent people from perhaps copying an insecure std::shuffle call over to a place where a secure one would be warranted. A form of defense-in-depth. [1]: https://en.cppreference.com/w/cpp/algorithm/random_shuffle
2019-05-10use crypto::rand instead of libc rand in a few testsmoneromooo-monero1-4/+4
We don't need secure randomness here, but it should shut coverity up
2019-05-02blockchain: keep a rolling long term block weight medianmoneromooo-monero1-0/+202