diff options
| author | Jonas Schnelli <[email protected]> | 2015-11-27 18:22:18 +0100 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2015-11-30 08:53:57 +0100 |
| commit | 4082e4660305f7696949c3a13e2e9611210894e8 (patch) | |
| tree | 0c9cf30842663b53cbe95300688b0a9f29d9a985 /src/qt/clientmodel.h | |
| parent | [Qt] reduce cs_main in getVerificationProgress() (diff) | |
| download | discoin-4082e4660305f7696949c3a13e2e9611210894e8.tar.xz discoin-4082e4660305f7696949c3a13e2e9611210894e8.zip | |
[Qt] call GuessVerificationProgress synchronous during core signal, pass double over UI signal
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 c3beb8239..2d204fdb6 100644 --- a/src/qt/clientmodel.h +++ b/src/qt/clientmodel.h @@ -89,7 +89,7 @@ private: Q_SIGNALS: void numConnectionsChanged(int count); - void numBlocksChanged(int count, const QDateTime& blockDate, const CBlockIndex *tip); + void numBlocksChanged(int count, const QDateTime& blockDate, double nVerificationProgress); void mempoolSizeChanged(long count, size_t mempoolSizeInBytes); void alertsChanged(const QString &warnings); void bytesChanged(quint64 totalBytesIn, quint64 totalBytesOut); |