]> Git Repo - VerusCoin.git/blobdiff - src/random.cpp
test
[VerusCoin.git] / src / random.cpp
index ae25bee1b71c8cd280d2eb13e1968d079594d45a..0ba0de908d8ff3fe873b7d1bed573fe92e1eefe2 100644 (file)
@@ -47,15 +47,16 @@ void RandAddSeedPerfmon()
 {
     RandAddSeed();
 
+#ifdef WIN32
+    // Don't need this on Linux, OpenSSL automatically uses /dev/urandom
+    // Seed with the entire set of perfmon data
+
     // This can take up to 2 seconds, so only do it every 10 minutes
     static int64_t nLastPerfmon;
     if (GetTime() < nLastPerfmon + 10 * 60)
         return;
     nLastPerfmon = GetTime();
 
-#ifdef WIN32
-    // Don't need this on Linux, OpenSSL automatically uses /dev/urandom
-    // Seed with the entire set of perfmon data
     std::vector<unsigned char> vData(250000, 0);
     long ret = 0;
     unsigned long nSize = 0;
This page took 0.03043 seconds and 4 git commands to generate.