diff options
author | Jeff Garzik <jgarzik@bitpay.com> | 2013-05-24 11:10:53 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@bitpay.com> | 2013-05-24 11:10:53 -0400 |
commit | f0d8a52cc039cda77730047db2443fbec016f852 (patch) | |
tree | 9ee293b71d88c4b2b2e34ad49b5248b9bde9d97e /src/checkpoints.h | |
parent | 36dc41f4273c59e570978c603e48bbec43f3d0a1 (diff) |
Replace repeated GetBoolArg() calls with Checkpoint::fEnabled variable
set once at init time.
Diffstat (limited to 'src/checkpoints.h')
-rw-r--r-- | src/checkpoints.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/checkpoints.h b/src/checkpoints.h index 3d56885556..a49a908a38 100644 --- a/src/checkpoints.h +++ b/src/checkpoints.h @@ -24,6 +24,8 @@ namespace Checkpoints CBlockIndex* GetLastCheckpoint(const std::map<uint256, CBlockIndex*>& mapBlockIndex); double GuessVerificationProgress(CBlockIndex *pindex); + + extern bool fEnabled; } #endif |