aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorpaveljanik <Pavel@Janik.cz>2015-07-03 16:36:49 +0200
committerMarcoFalke <falke.marco@gmail.com>2015-12-02 15:18:22 +0100
commit8a03727d9cc975a3d0843d83ef05957b9e9fbbca (patch)
treed51cedc6720235014a184cba8e230fb11f18b8e9 /src/main.cpp
parentdf2ced5c8325b84557f185b687e6c014de84cecf (diff)
downloadbitcoin-8a03727d9cc975a3d0843d83ef05957b9e9fbbca.tar.xz
Fix various typos
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp
index c41dd58d11..fe6bc52957 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -134,9 +134,9 @@ namespace {
set<CBlockIndex*, CBlockIndexWorkComparator> setBlockIndexCandidates;
/** Number of nodes with fSyncStarted. */
int nSyncStarted = 0;
- /** All pairs A->B, where A (or one if its ancestors) misses transactions, but B has transactions.
- * Pruned nodes may have entries where B is missing data.
- */
+ /** All pairs A->B, where A (or one of its ancestors) misses transactions, but B has transactions.
+ * Pruned nodes may have entries where B is missing data.
+ */
multimap<CBlockIndex*, CBlockIndex*> mapBlocksUnlinked;
CCriticalSection cs_LastBlockFile;