|
@ -260,8 +260,12 @@ private: |
|
|
/// This updates m_miningInfo.
|
|
|
/// This updates m_miningInfo.
|
|
|
void onPostStateChanged(); |
|
|
void onPostStateChanged(); |
|
|
|
|
|
|
|
|
|
|
|
/// Does garbage collection on watches.
|
|
|
void checkWatchGarbage(); |
|
|
void checkWatchGarbage(); |
|
|
|
|
|
|
|
|
|
|
|
/// Ticks various system-level objects.
|
|
|
|
|
|
void tick(); |
|
|
|
|
|
|
|
|
VersionChecker m_vc; ///< Dummy object to check & update the protocol version.
|
|
|
VersionChecker m_vc; ///< Dummy object to check & update the protocol version.
|
|
|
CanonBlockChain m_bc; ///< Maintains block database.
|
|
|
CanonBlockChain m_bc; ///< Maintains block database.
|
|
|
BlockQueue m_bq; ///< Maintains a list of incoming blocks not yet on the blockchain (to be imported).
|
|
|
BlockQueue m_bq; ///< Maintains a list of incoming blocks not yet on the blockchain (to be imported).
|
|
@ -286,6 +290,8 @@ private: |
|
|
|
|
|
|
|
|
mutable std::chrono::system_clock::time_point m_lastGarbageCollection; |
|
|
mutable std::chrono::system_clock::time_point m_lastGarbageCollection; |
|
|
///< When did we last both doing GC on the watches?
|
|
|
///< When did we last both doing GC on the watches?
|
|
|
|
|
|
mutable std::chrono::system_clock::time_point m_lastTick = std::chrono::system_clock::now(); |
|
|
|
|
|
///< When did we last tick()?
|
|
|
|
|
|
|
|
|
// TODO!!!!!! REPLACE WITH A PROPER X-THREAD ASIO SIGNAL SYSTEM (could just be condition variables)
|
|
|
// TODO!!!!!! REPLACE WITH A PROPER X-THREAD ASIO SIGNAL SYSTEM (could just be condition variables)
|
|
|
std::atomic<bool> m_syncTransactionQueue = {false}; |
|
|
std::atomic<bool> m_syncTransactionQueue = {false}; |
|
|