aboutsummaryrefslogtreecommitdiff
path: root/src/p2p
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2019-08-19 17:31:39 -0500
committerluigi1111 <luigi1111w@gmail.com>2019-08-19 17:31:39 -0500
commitf205d28e96ef86303475a57b3fea15d2ede8a752 (patch)
tree441fdb1de85bd9eaf60b65fbfbfe3019957bb224 /src/p2p
parentMerge pull request #5725 (diff)
parentReplace std::random_shuffle with std::shuffle (diff)
downloadmonero-f205d28e96ef86303475a57b3fea15d2ede8a752.tar.xz
Merge pull request #5727
7b9a420 Replace std::random_shuffle with std::shuffle (tomsmeding)
Diffstat (limited to 'src/p2p')
-rw-r--r--src/p2p/net_peerlist.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/p2p/net_peerlist.h b/src/p2p/net_peerlist.h
index 68627375a..c65b9dd82 100644
--- a/src/p2p/net_peerlist.h
+++ b/src/p2p/net_peerlist.h
@@ -293,7 +293,7 @@ namespace nodetool
if (anonymize)
{
- std::random_shuffle(bs_head.begin(), bs_head.end());
+ std::shuffle(bs_head.begin(), bs_head.end(), crypto::random_device{});
if (bs_head.size() > depth)
bs_head.resize(depth);
for (auto &e: bs_head)