aboutsummaryrefslogtreecommitdiff
path: root/src/validation.h
diff options
context:
space:
mode:
authorCarl Dong <contact@carldong.me>2021-01-20 14:28:48 -0500
committerCarl Dong <contact@carldong.me>2021-01-28 14:15:26 -0500
commit67c9a83df19c6e2a2edb32336879204e7770b4a7 (patch)
treeeaddd1603c1dc4cb0e516518f8fc676a331ef3fe /src/validation.h
parentb8e95658d5909f93dfc7d1e6532661db8919e5b7 (diff)
downloadbitcoin-67c9a83df19c6e2a2edb32336879204e7770b4a7.tar.xz
style-only: Remove redundant sentence in ActivateBestChain comment
Diffstat (limited to 'src/validation.h')
-rw-r--r--src/validation.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/validation.h b/src/validation.h
index 39fc98d3b4..e86b3d3af8 100644
--- a/src/validation.h
+++ b/src/validation.h
@@ -648,11 +648,10 @@ public:
void PruneAndFlush();
/**
- * Find the best known block, and make it the tip of the block chain
- *
- * Make the best chain active, in multiple steps. The result is either failure
- * or an activated best chain. pblock is either nullptr or a pointer to a block
- * that is already loaded (to avoid loading it again from disk).
+ * Find the best known block, and make it the tip of the block chain. The
+ * result is either failure or an activated best chain. pblock is either
+ * nullptr or a pointer to a block that is already loaded (to avoid loading
+ * it again from disk).
*
* ActivateBestChain is split into steps (see ActivateBestChainStep) so that
* we avoid holding cs_main for an extended period of time; the length of this