aboutsummaryrefslogtreecommitdiff
path: root/src/random.cpp
diff options
context:
space:
mode:
authorPieter Wuille <[email protected]>2017-07-14 12:17:33 -0700
committerPieter Wuille <[email protected]>2017-07-14 12:17:33 -0700
commit674848fe1c43fb88870cf5ba16fca4e2524da793 (patch)
tree72d254436d3d0455b68b2806cd75b343cd106528 /src/random.cpp
parentUse cpuid intrinsics instead of asm code (diff)
downloaddiscoin-674848fe1c43fb88870cf5ba16fca4e2524da793.tar.xz
discoin-674848fe1c43fb88870cf5ba16fca4e2524da793.zip
Clarify entropy source
Diffstat (limited to 'src/random.cpp')
-rw-r--r--src/random.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/random.cpp b/src/random.cpp
index bb463aae8..1ee6158e4 100644
--- a/src/random.cpp
+++ b/src/random.cpp
@@ -78,7 +78,7 @@ static void RDRandInit()
{
uint32_t eax, ebx, ecx, edx;
if (__get_cpuid(1, &eax, &ebx, &ecx, &edx) && (ecx & CPUID_F1_ECX_RDRAND)) {
- LogPrintf("Using RdRand as entropy source\n");
+ LogPrintf("Using RdRand as an additional entropy source\n");
rdrand_supported = true;
}
hwrand_initialized.store(true);