aboutsummaryrefslogtreecommitdiff
path: root/src/validation.h
diff options
context:
space:
mode:
authorJames O'Beirne <james.obeirne@gmail.com>2019-03-29 14:09:00 -0400
committerJames O'Beirne <james.obeirne@gmail.com>2019-09-17 09:45:38 -0400
commitf5809d5b135c7f9de5217d3cda76638fe7eed58a (patch)
treec2712ff20096a3bf923532bc30e6d42e6cb6d64b /src/validation.h
parentf18a9065e91163b0238fc005d693b0d961116855 (diff)
downloadbitcoin-f5809d5b135c7f9de5217d3cda76638fe7eed58a.tar.xz
doc: fix CChainState::ActivateBestChain doc
Diffstat (limited to 'src/validation.h')
-rw-r--r--src/validation.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/validation.h b/src/validation.h
index 06252b6bc8..e3ef051115 100644
--- a/src/validation.h
+++ b/src/validation.h
@@ -678,9 +678,13 @@ public:
* we avoid holding cs_main for an extended period of time; the length of this
* call may be quite long during reindexing or a substantial reorg.
*
+ * May not be called with cs_main held. May not be called in a
+ * validationinterface callback.
+ *
* @returns true unless a system error occurred
*/
- bool ActivateBestChain(CValidationState& state,
+ bool ActivateBestChain(
+ CValidationState& state,
const CChainParams& chainparams,
std::shared_ptr<const CBlock> pblock) LOCKS_EXCLUDED(cs_main);