Skip to content

Commit

Permalink
Merge pull request dogecoin#3763 from oliveredget/fix
Browse files Browse the repository at this point in the history
Fix typos in comments
  • Loading branch information
patricklodder authored Jan 6, 2025
2 parents 5355cc0 + e34cd76 commit 3875eaf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build-aux/m4/dogecoin_find_bdb53.m4
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion contrib/debian/examples/dogecoin.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion qa/rpc-tests/keypool.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def run_test(self):
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)

Expand Down
2 changes: 1 addition & 1 deletion src/test/merkle_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 3875eaf

Please sign in to comment.