Skip to content

Commit e3b06e8

Browse files
author
MacroFake
committed
Merge bitcoin/bitcoin#25440: log: Use consistent wording in random.cpp log
c01ae8f 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 c01ae8f Tree-SHA512: d5b3849b3a6e3de7ea9b468c05f17cacd1dbd1aca2f3401b5138383dc8d385cea9e221db558ab472c1c4c7f6921d57dcc7af89a54776c5765fa00e429694b4e7
2 parents 1b71c76 + c01ae8f commit e3b06e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/random.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ static void ReportHardwareRand()
9797
// This must be done in a separate function, as InitHardwareRand() may be indirectly called
9898
// from global constructors, before logging is initialized.
9999
if (g_rdseed_supported) {
100-
LogPrintf("Using RdSeed as additional entropy source\n");
100+
LogPrintf("Using RdSeed as an additional entropy source\n");
101101
}
102102
if (g_rdrand_supported) {
103103
LogPrintf("Using RdRand as an additional entropy source\n");

0 commit comments

Comments
 (0)