diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2018-04-24 21:12:02 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2018-05-07 14:32:50 +0200 |
commit | d8c4998f3198e8d7e37a8414b9891f6b74b9173b (patch) | |
tree | 024d5ee00a52f539a95158ad92cd6aabbdab9b58 /src/index | |
parent | bd83704ec6fa9a6564cd0f489efa65c1ecb095c2 (diff) |
Fix typos
Diffstat (limited to 'src/index')
-rw-r--r-- | src/index/txindex.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index/txindex.cpp b/src/index/txindex.cpp index 5b6e0f9980..3ff16b7664 100644 --- a/src/index/txindex.cpp +++ b/src/index/txindex.cpp @@ -170,7 +170,7 @@ void TxIndex::BlockConnected(const std::shared_ptr<const CBlock>& block, const C } } else { // Ensure block connects to an ancestor of the current best block. This should be the case - // most of the time, but may not be immediately after the the sync thread catches up and sets + // most of the time, but may not be immediately after the sync thread catches up and sets // m_synced. Consider the case where there is a reorg and the blocks on the stale branch are // in the ValidationInterface queue backlog even after the sync thread has caught up to the // 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) } // This checks that ChainStateFlushed callbacks are received after BlockConnected. The check may fail - // immediately after the the sync thread catches up and sets m_synced. Consider the case where + // immediately after the sync thread catches up and sets m_synced. Consider the case where // there is a reorg and the blocks on the stale branch are in the ValidationInterface queue // backlog even after the sync thread has caught up to the new chain tip. In this unlikely // event, log a warning and let the queue clear. |