aboutsummaryrefslogtreecommitdiff
path: root/src/checkpoints.cpp
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@exmulti.com>2012-11-28 12:07:42 -0500
committerJeff Garzik <jgarzik@redhat.com>2012-11-28 12:07:42 -0500
commit857b3ad923a6dccb520eca5be06fe7c0d279b9a9 (patch)
tree20410fdd9c8085eeecc047c9ecbb44e0b29a2d95 /src/checkpoints.cpp
parent0c50d8b007dd0b4064ddb912f5dd43c094c6e959 (diff)
downloadbitcoin-857b3ad923a6dccb520eca5be06fe7c0d279b9a9.tar.xz
Add "checkpoints" option, to permit disabling of checkpoint logic.
Diffstat (limited to 'src/checkpoints.cpp')
-rw-r--r--src/checkpoints.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp
index 8208854962..cf3980561c 100644
--- a/src/checkpoints.cpp
+++ b/src/checkpoints.cpp
@@ -39,6 +39,9 @@ namespace Checkpoints
bool CheckBlock(int nHeight, const uint256& hash)
{
+ if (!GetBoolArg("-checkpoints", false))
+ return true;
+
MapCheckpoints& checkpoints = (fTestNet ? mapCheckpointsTestnet : mapCheckpoints);
MapCheckpoints::const_iterator i = checkpoints.find(nHeight);
@@ -48,6 +51,9 @@ namespace Checkpoints
int GetTotalBlocksEstimate()
{
+ if (!GetBoolArg("-checkpoints", false))
+ return 0;
+
MapCheckpoints& checkpoints = (fTestNet ? mapCheckpointsTestnet : mapCheckpoints);
return checkpoints.rbegin()->first;
@@ -55,6 +61,9 @@ namespace Checkpoints
CBlockIndex* GetLastCheckpoint(const std::map<uint256, CBlockIndex*>& mapBlockIndex)
{
+ if (!GetBoolArg("-checkpoints", false))
+ return NULL;
+
MapCheckpoints& checkpoints = (fTestNet ? mapCheckpointsTestnet : mapCheckpoints);
BOOST_REVERSE_FOREACH(const MapCheckpoints::value_type& i, checkpoints)