From bb213aaf8d6647d518ddd5a4fb3a37f34694feb4 Mon Sep 17 00:00:00 2001 From: oliveredget <188809800+oliveredget@users.noreply.github.com> Date: Wed, 1 Jan 2025 15:59:21 +0800 Subject: [PATCH 1/4] fix: typo in build-aux/m4/dogecoin_find_bdb53.m4 --- build-aux/m4/dogecoin_find_bdb53.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-aux/m4/dogecoin_find_bdb53.m4 b/build-aux/m4/dogecoin_find_bdb53.m4 index 1309c05a7..812e09353 100644 --- a/build-aux/m4/dogecoin_find_bdb53.m4 +++ b/build-aux/m4/dogecoin_find_bdb53.m4 @@ -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} From b8e2670cd0b8698f89f057ad71014caf26cb1c35 Mon Sep 17 00:00:00 2001 From: oliveredget <188809800+oliveredget@users.noreply.github.com> Date: Wed, 1 Jan 2025 15:59:29 +0800 Subject: [PATCH 2/4] fix: typo in contrib/debian/examples/dogecoin.conf --- contrib/debian/examples/dogecoin.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/debian/examples/dogecoin.conf b/contrib/debian/examples/dogecoin.conf index d82492979..34967b2b1 100644 --- a/contrib/debian/examples/dogecoin.conf +++ b/contrib/debian/examples/dogecoin.conf @@ -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 From 6144c75abe9802186ae1ba038513eadef8f22363 Mon Sep 17 00:00:00 2001 From: oliveredget <188809800+oliveredget@users.noreply.github.com> Date: Wed, 1 Jan 2025 15:59:35 +0800 Subject: [PATCH 3/4] fix: typo in qa/rpc-tests/keypool.py --- qa/rpc-tests/keypool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/rpc-tests/keypool.py b/qa/rpc-tests/keypool.py index 147050a16..fe7b2b4fe 100755 --- a/qa/rpc-tests/keypool.py +++ b/qa/rpc-tests/keypool.py @@ -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) From e34cd76e1f5ce27df0191927731ea19206af528d Mon Sep 17 00:00:00 2001 From: oliveredget <188809800+oliveredget@users.noreply.github.com> Date: Wed, 1 Jan 2025 15:59:41 +0800 Subject: [PATCH 4/4] fix: typo in src/test/merkle_tests.cpp --- src/test/merkle_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/merkle_tests.cpp b/src/test/merkle_tests.cpp index aae84a4fd..1a1cf4399 100644 --- a/src/test/merkle_tests.cpp +++ b/src/test/merkle_tests.cpp @@ -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);