aboutsummaryrefslogtreecommitdiff
path: root/src/validation.h
diff options
context:
space:
mode:
authorPieter Wuille <[email protected]>2018-04-12 18:13:49 -0700
committerPieter Wuille <[email protected]>2018-04-12 18:25:44 -0700
commit4ba6da55743a55189164e29e45ac9e73a074d808 (patch)
tree993294d94c6d8c068e7727b32192b98ba395bd15 /src/validation.h
parentMerge #12803: Make BaseSignatureCreator a pure interface (diff)
parentModernize best block mutex/cv/hash variable naming (diff)
downloaddiscoin-4ba6da55743a55189164e29e45ac9e73a074d808.tar.xz
discoin-4ba6da55743a55189164e29e45ac9e73a074d808.zip
Merge #12743: Fix csBestBlock/cvBlockChange waiting in rpc/mining
4a6c0e3dcf Modernize best block mutex/cv/hash variable naming (Pieter Wuille) 45dd135039 Fix csBestBlock/cvBlockChange waiting in rpc/mining (Pieter Wuille) Pull request description: This is an alternative to #11694. It reintroduces a uint256 variable with the best block hash, protected by csBestBlock, and only updated while holding it. Also rename the involved variable to modern guidelines, as there are very few uses. Tree-SHA512: 826a86c7d3cee7fe49f99f4398ae99e81cb0563197eaeba77306a3ca6072b67cdb932bc35720fc0f99c2a57b218efa029d0b8bdfb240591a629b2e90efa3199d
Diffstat (limited to 'src/validation.h')
-rw-r--r--src/validation.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/validation.h b/src/validation.h
index dad6858b1..366848469 100644
--- a/src/validation.h
+++ b/src/validation.h
@@ -165,8 +165,9 @@ extern BlockMap& mapBlockIndex;
extern uint64_t nLastBlockTx;
extern uint64_t nLastBlockWeight;
extern const std::string strMessageMagic;
-extern CWaitableCriticalSection csBestBlock;
-extern CConditionVariable cvBlockChange;
+extern CWaitableCriticalSection g_best_block_mutex;
+extern CConditionVariable g_best_block_cv;
+extern uint256 g_best_block;
extern std::atomic_bool fImporting;
extern std::atomic_bool fReindex;
extern int nScriptCheckThreads;