diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2018-10-31 13:56:19 -0700 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2018-12-12 14:22:12 -0800 |
commit | 9695f31d7544778853aa373f0aeed629fa68d85e (patch) | |
tree | 4999c234883bf8127716904b36d2873383151317 /src/test | |
parent | 6d0a14703e288d72ff19d4d89defbc853233899f (diff) |
Make addrman use its local RNG exclusively
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/addrman_tests.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/test/addrman_tests.cpp b/src/test/addrman_tests.cpp index 55fe19cebe..12e6ace213 100644 --- a/src/test/addrman_tests.cpp +++ b/src/test/addrman_tests.cpp @@ -32,12 +32,6 @@ public: insecure_rand = FastRandomContext(true); } - int RandomInt(int nMax) override - { - state = (CHashWriter(SER_GETHASH, 0) << state).GetCheapHash(); - return (unsigned int)(state % nMax); - } - CAddrInfo* Find(const CNetAddr& addr, int* pnId = nullptr) { LOCK(cs); |