diff options
| author | Jonas Schnelli <[email protected]> | 2015-11-27 13:20:46 +0100 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2015-11-30 08:50:59 +0100 |
| commit | 947d20b84ab271bec5ff08312921961627d1ad80 (patch) | |
| tree | e391f64f42f4f5d21c7a87e747dfb961f7531c8a /src/qt/clientmodel.h | |
| parent | [Qt] update block tip (height and date) without locking cs_main, update alway... (diff) | |
| download | discoin-947d20b84ab271bec5ff08312921961627d1ad80.tar.xz discoin-947d20b84ab271bec5ff08312921961627d1ad80.zip | |
[Qt] reduce cs_main in getVerificationProgress()
Diffstat (limited to 'src/qt/clientmodel.h')
| -rw-r--r-- | src/qt/clientmodel.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/qt/clientmodel.h b/src/qt/clientmodel.h index 3c6700f37..c3beb8239 100644 --- a/src/qt/clientmodel.h +++ b/src/qt/clientmodel.h @@ -15,6 +15,7 @@ class PeerTableModel; class TransactionTableModel; class CWallet; +class CBlockIndex; QT_BEGIN_NAMESPACE class QTimer; @@ -59,7 +60,7 @@ public: quint64 getTotalBytesRecv() const; quint64 getTotalBytesSent() const; - double getVerificationProgress() const; + double getVerificationProgress(const CBlockIndex *tip) const; QDateTime getLastBlockDate() const; //! Return true if core is doing initial block download @@ -88,7 +89,7 @@ private: Q_SIGNALS: void numConnectionsChanged(int count); - void numBlocksChanged(int count, const QDateTime& blockDate); + void numBlocksChanged(int count, const QDateTime& blockDate, const CBlockIndex *tip); void mempoolSizeChanged(long count, size_t mempoolSizeInBytes); void alertsChanged(const QString &warnings); void bytesChanged(quint64 totalBytesIn, quint64 totalBytesOut); |