diff --git a/src/random.cpp b/src/random.cpp index f46b6000f4..06dab7093c 100644 --- a/src/random.cpp +++ b/src/random.cpp @@ -381,8 +381,8 @@ void LockingCallbackOpenSSL(int mode, int i, const char* file, int line) NO_THRE /* A note on the use of noexcept in the seeding functions below: * * None of the RNG code should ever throw any exception, with the sole exception - * of MilliSleep in SeedSleep, which can (and does) support interruptions which - * cause a boost::thread_interrupted to be thrown. + * of UninterruptibleSleep in SeedSleep, which can (and does) support interruptions + * which cause a boost::thread_interrupted to be thrown. * * This means that SeedSleep, and all functions that invoke it are throwing. * However, we know that GetRandBytes() and GetStrongRandBytes() never trigger