diff options
author | MacroFake <falke.marco@gmail.com> | 2022-06-22 07:49:11 +0200 |
---|---|---|
committer | MacroFake <falke.marco@gmail.com> | 2022-06-22 07:49:22 +0200 |
commit | e3b06e8dd8982155a97cfd090c01d06455a3c84d (patch) | |
tree | 352e389f36f302648a8351fa7554caa3fb0afe60 /src | |
parent | 1b71c7688639daa233c4e34fec35a54d21ef31bc (diff) | |
parent | c01ae8f5ead6837162a2772ce792a83f66757ee4 (diff) |
Merge bitcoin/bitcoin#25440: log: Use consistent wording in random.cpp log
c01ae8f5ead6837162a2772ce792a83f66757ee4 Use consistent wording in log (Igor Bubelov)
Pull request description:
It's a trivial change, but it bothers me a bit that two log lines in a row aren't grammatically identical while following exactly the same pattern. I've read `contributing.md` and I'm aware that changes like this are usually being ignored and dropped, but I decided to leave it here anyway in case someone feels the same way about inconsistent log messages or grammar =)
ACKs for top commit:
laanwj:
Code review ACK c01ae8f5ead6837162a2772ce792a83f66757ee4
Tree-SHA512: d5b3849b3a6e3de7ea9b468c05f17cacd1dbd1aca2f3401b5138383dc8d385cea9e221db558ab472c1c4c7f6921d57dcc7af89a54776c5765fa00e429694b4e7
Diffstat (limited to 'src')
-rw-r--r-- | src/random.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/random.cpp b/src/random.cpp index 74ceb3d2a3..fca4b5041a 100644 --- a/src/random.cpp +++ b/src/random.cpp @@ -97,7 +97,7 @@ static void ReportHardwareRand() // This must be done in a separate function, as InitHardwareRand() may be indirectly called // from global constructors, before logging is initialized. if (g_rdseed_supported) { - LogPrintf("Using RdSeed as additional entropy source\n"); + LogPrintf("Using RdSeed as an additional entropy source\n"); } if (g_rdrand_supported) { LogPrintf("Using RdRand as an additional entropy source\n"); |