Merge pull request #3763 from oliveredget/fix

Fix typos in comments
This commit is contained in:
Old Dip Tracker 2025-01-06 17:20:57 -05:00 committed by GitHub
commit 3875eaf9cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -69,7 +69,7 @@ AC_DEFUN([BITCOIN_FIND_BDB53],[
bdbpath="${bdb53path}"
fi
dnl restore orgininal CPPFLAGS and fixate the now checked flags.
dnl restore original CPPFLAGS and fixate the now checked flags.
if test "x$BDB_CFLAGS" != "x"; then
CPPFLAGS="${TCFLAGS}"
BDB_CPPFLAGS=${BDB_CFLAGS}

View File

@ -76,7 +76,7 @@
#rpcuser=Ulysseys
#rpcpassword=YourSuperGreatPasswordNumber_DO_NOT_USE_THIS_OR_YOU_WILL_GET_ROBBED_385593
#
# The second method `rpcauth` can be added to server startup argument. It is set at intialization time
# The second method `rpcauth` can be added to server startup argument. It is set at initialization time
# using the output from the script in share/rpcuser/rpcuser.py after providing a username:
#
# ./share/rpcuser/rpcuser.py alice

View File

@ -69,7 +69,7 @@ class KeyPoolTest(BitcoinTestFramework):
nodes[0].generate(1)
try:
nodes[0].generate(1)
raise AssertionError('Keypool should be exhausted after three addesses')
raise AssertionError('Keypool should be exhausted after three addresses')
except JSONRPCException as e:
assert(e.error['code']==-12)

View File

@ -117,7 +117,7 @@ BOOST_AUTO_TEST_CASE(merkle_test)
// If no mutation was done (once for every ntx value), try up to 16 branches.
if (mutate == 0) {
for (int loop = 0; loop < std::min(ntx, 16); loop++) {
// If ntx <= 16, try all branches. Otherise, try 16 random ones.
// If ntx <= 16, try all branches. Otherwise, try 16 random ones.
int mtx = loop;
if (ntx > 16) {
mtx = InsecureRandRange(ntx);