Skip to content

Commit b30cc71

Browse files
committed
doc: fix typos
1 parent 335798c commit b30cc71

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/test/miner_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ BOOST_AUTO_TEST_CASE(CreateNewBlock_validity)
705705
{
706706
LOCK(cs_main);
707707
// The above calls don't guarantee the tip is actually updated, so
708-
// we explictly check this.
708+
// we explicitly check this.
709709
auto maybe_new_tip{Assert(m_node.chainman)->ActiveChain().Tip()};
710710
BOOST_REQUIRE_EQUAL(maybe_new_tip->GetBlockHash(), block.GetHash());
711711
}

src/txorphanage.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ void TxOrphanage::EraseForPeer(NodeId peer)
111111
if (orphan_it != orphan.announcers.end()) {
112112
orphan.announcers.erase(peer);
113113

114-
// No remaining annnouncers: clean up entry
114+
// No remaining announcers: clean up entry
115115
if (orphan.announcers.empty()) {
116116
nErased += EraseTx(orphan.tx->GetWitnessHash());
117117
}

test/functional/wallet_encryption.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def do_wallet_tool(*args):
158158
dumpfile_path = self.nodes[0].datadir_path / "noprivs_enc.dump"
159159
do_wallet_tool("-wallet=noprivs_enc", f"-dumpfile={dumpfile_path}", "dump")
160160
with open(dumpfile_path, "r", encoding="utf-8") as f:
161-
# Check theres nothing with an 'mkey' prefix
161+
# Check there's nothing with an 'mkey' prefix
162162
assert_equal(all([not line.startswith("046d6b6579") for line in f]), True)
163163

164164

0 commit comments

Comments
 (0)