Skip to content

Commit 6a8b3f2

Browse files
MacroFakePastaPastaPasta
authored andcommitted
Merge 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
1 parent 6af409d commit 6a8b3f2

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
@@ -96,7 +96,7 @@ static void ReportHardwareRand()
9696
// This must be done in a separate function, as InitHardwareRand() may be indirectly called
9797
// from global constructors, before logging is initialized.
9898
if (g_rdseed_supported) {
99-
LogPrintf("Using RdSeed as additional entropy source\n");
99+
LogPrintf("Using RdSeed as an additional entropy source\n");
100100
}
101101
if (g_rdrand_supported) {
102102
LogPrintf("Using RdRand as an additional entropy source\n");

0 commit comments

Comments
 (0)