diff options
author | Cozz Lovan <cozzlovan@yahoo.com> | 2014-03-19 00:26:14 +0100 |
---|---|---|
committer | Cozz Lovan <cozzlovan@yahoo.com> | 2014-04-02 03:48:07 +0200 |
commit | 392783697c21a0c4cf3db6b0946d3d44d7fed537 (patch) | |
tree | 9f0808ba972d629af5cae087b57c398bbd015b95 /src/checkpoints.cpp | |
parent | 397521d632b4a49e61c8ea2246135f9cc00e57c4 (diff) |
[Qt] rescan progress
Diffstat (limited to 'src/checkpoints.cpp')
-rw-r--r-- | src/checkpoints.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index 9db1f5e100..9ab8b68443 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -21,7 +21,7 @@ namespace Checkpoints // every system. When reindexing from a fast disk with a slow CPU, it // can be up to 20, while when downloading from a slow network with a // fast multicore CPU, it won't be much higher than 1. - static const double fSigcheckVerificationFactor = 5.0; + static const double SIGCHECK_VERIFICATION_FACTOR = 5.0; struct CCheckpointData { const MapCheckpoints *mapCheckpoints; @@ -104,12 +104,13 @@ namespace Checkpoints } // Guess how far we are in the verification process at the given block index - double GuessVerificationProgress(CBlockIndex *pindex) { + double GuessVerificationProgress(CBlockIndex *pindex, bool fSigchecks) { if (pindex==NULL) return 0.0; int64_t nNow = time(NULL); + double fSigcheckVerificationFactor = fSigchecks ? SIGCHECK_VERIFICATION_FACTOR : 1.0; double fWorkBefore = 0.0; // Amount of work done before pindex double fWorkAfter = 0.0; // Amount of work left after pindex (estimated) // Work is defined as: 1.0 per transaction before the last checkpoint, and |