diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2012-05-13 04:43:24 +0000 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-07-11 14:48:02 +0200 |
commit | ff6a7af154f2151c93a06b7ee86c167603c5ac55 (patch) | |
tree | 5042feb9576de0a4857ac41e444774a87f79194f /src/main.h | |
parent | f0fc81a0832a8fa93c5d7e619e25f739d72b49f3 (diff) |
getblocktemplate: longpolling support
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.h b/src/main.h index f6bac889be..a683412571 100644 --- a/src/main.h +++ b/src/main.h @@ -87,6 +87,8 @@ extern uint64_t nLastBlockTx; extern uint64_t nLastBlockSize; extern const std::string strMessageMagic; extern int64_t nTimeBestReceived; +extern CWaitableCriticalSection csBestBlock; +extern CConditionVariable cvBlockChange; extern bool fImporting; extern bool fReindex; extern bool fBenchmark; |