Skip to content

Commit 472fe8a

Browse files
author
MarcoFalke
committed
Merge #13069: docs: Fix typos
d8c4998 Fix typos (practicalswift) Pull request description: Fix typos. Tree-SHA512: 9af52a9799e6892b162e4aa1bcd6585502e10650b8aced59e7346dbb2f08544330081eb79328255fad1d358c095507956e049d354c4383b6965d4d5a7d635425
2 parents 61fcef0 + d8c4998 commit 472fe8a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/index/txindex.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ void TxIndex::BlockConnected(const std::shared_ptr<const CBlock>& block, const C
170170
}
171171
} else {
172172
// Ensure block connects to an ancestor of the current best block. This should be the case
173-
// most of the time, but may not be immediately after the the sync thread catches up and sets
173+
// most of the time, but may not be immediately after the sync thread catches up and sets
174174
// m_synced. Consider the case where there is a reorg and the blocks on the stale branch are
175175
// in the ValidationInterface queue backlog even after the sync thread has caught up to the
176176
// new chain tip. In this unlikely event, log a warning and let the queue clear.
@@ -212,7 +212,7 @@ void TxIndex::ChainStateFlushed(const CBlockLocator& locator)
212212
}
213213

214214
// This checks that ChainStateFlushed callbacks are received after BlockConnected. The check may fail
215-
// immediately after the the sync thread catches up and sets m_synced. Consider the case where
215+
// immediately after the sync thread catches up and sets m_synced. Consider the case where
216216
// there is a reorg and the blocks on the stale branch are in the ValidationInterface queue
217217
// backlog even after the sync thread has caught up to the new chain tip. In this unlikely
218218
// event, log a warning and let the queue clear.

src/util.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ std::unique_ptr<T> MakeUnique(Args&&... args)
353353
* CPU-intensive and non-interactive. See SCHED_BATCH in sched(7) for details.
354354
*
355355
* @return The return value of sched_setschedule(), or 1 on systems without
356-
* sched_setchedule().
356+
* sched_setschedule().
357357
*/
358358
int ScheduleBatchPriority(void);
359359

src/wallet/rpcdump.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ UniValue importwallet(const JSONRPCRequest& request)
559559
file.seekg(0, file.beg);
560560

561561
// Use uiInterface.ShowProgress instead of pwallet.ShowProgress because pwallet.ShowProgress has a cancel button tied to AbortRescan which
562-
// we don't want for this progress bar shoing the import progress. uiInterface.ShowProgress does not have a cancel button.
562+
// we don't want for this progress bar showing the import progress. uiInterface.ShowProgress does not have a cancel button.
563563
uiInterface.ShowProgress(_("Importing..."), 0, false); // show progress dialog in GUI
564564
while (file.good()) {
565565
uiInterface.ShowProgress("", std::max(1, std::min(99, (int)(((double)file.tellg() / (double)nFilesize) * 100))), false);

test/functional/p2p_invalid_tx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def run_test(self):
8181
self.reconnect_p2p(num_connections=2)
8282

8383
self.log.info('Test orphan transaction handling ... ')
84-
# Create a root transaction that we withold until all dependend transactions
84+
# Create a root transaction that we withhold until all dependend transactions
8585
# are sent out and in the orphan cache
8686
SCRIPT_PUB_KEY_OP_TRUE = b'\x51\x75' * 15 + b'\x51'
8787
tx_withhold = CTransaction()

0 commit comments

Comments
 (0)