diff options
| author | Philip Kaufmann <[email protected]> | 2013-04-06 12:14:05 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2013-04-06 18:50:34 +0200 |
| commit | 87dd6035e583d45d6c2e464867425ee1a9cad8e9 (patch) | |
| tree | 3f23763c138b71a765e18fa5c663fb129d157102 /src/qt/clientmodel.h | |
| parent | Merge pull request #2459 from Diapolo/pro-file (diff) | |
| download | discoin-87dd6035e583d45d6c2e464867425ee1a9cad8e9.tar.xz discoin-87dd6035e583d45d6c2e464867425ee1a9cad8e9.zip | |
Bitcoin-Qt: emit numBlocksChanged for changed reindex or importing state
- this allows our progressbarlabel to correctly update, when we
finish a reindex or import, but do not get new blocks from other sources
Diffstat (limited to 'src/qt/clientmodel.h')
| -rw-r--r-- | src/qt/clientmodel.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/clientmodel.h b/src/qt/clientmodel.h index 3ba34b278..904bff188 100644 --- a/src/qt/clientmodel.h +++ b/src/qt/clientmodel.h @@ -60,6 +60,8 @@ private: int cachedNumBlocks; int cachedNumBlocksOfPeers; + bool cachedReindexing; + bool cachedImporting; int numBlocksAtStartup; |