diff options
| author | furszy <[email protected]> | 2020-01-23 21:34:58 -0300 |
|---|---|---|
| committer | furszy <[email protected]> | 2020-05-23 20:02:10 -0300 |
| commit | a06e845e826acaeb0db7cf02b2519c177e94dee5 (patch) | |
| tree | 6eeaf01a99b90382adb98d79500f1d8ea40285f0 /src/qt/clientmodel.h | |
| parent | Added best block hash to the NotifyHeaderTip and NotifyBlockTip signals. (diff) | |
| download | discoin-a06e845e826acaeb0db7cf02b2519c177e94dee5.tar.xz discoin-a06e845e826acaeb0db7cf02b2519c177e94dee5.zip | |
BlockTip struct created and connected to notifyHeaderTip and notifyBlockTip signals.
Diffstat (limited to 'src/qt/clientmodel.h')
| -rw-r--r-- | src/qt/clientmodel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/clientmodel.h b/src/qt/clientmodel.h index aa324bc9e..7f12cce1d 100644 --- a/src/qt/clientmodel.h +++ b/src/qt/clientmodel.h @@ -77,7 +77,7 @@ public: bool getProxyInfo(std::string& ip_port) const; - // caches for the best header, number of blocks + // caches for the best header: hash, number of blocks and block time mutable std::atomic<int> cachedBestHeaderHeight; mutable std::atomic<int64_t> cachedBestHeaderTime; mutable std::atomic<int> m_cached_num_blocks{-1}; |