From e892f9648ae5f72b2020bdaa1e28901e8378e9fc Mon Sep 17 00:00:00 2001 From: fanquake Date: Fri, 18 Oct 2019 14:16:13 -0400 Subject: random: remove call to RAND_screen() (Windows only) Follow up to https://github.com/bitcoin/bitcoin/pull/17151 where there were multiple calls to also remove our call to RAND_screen(). --- src/random.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/random.cpp') diff --git a/src/random.cpp b/src/random.cpp index 0f13228383..48d20d7d72 100644 --- a/src/random.cpp +++ b/src/random.cpp @@ -594,10 +594,6 @@ static void SeedSleep(CSHA512& hasher, RNGState& rng) static void SeedStartup(CSHA512& hasher, RNGState& rng) noexcept { -#ifdef WIN32 - RAND_screen(); -#endif - // Gather 256 bits of hardware randomness, if available SeedHardwareSlow(hasher); -- cgit v1.2.3