Browse Source

disable checkpoints

pull/5/head
orignal 7 years ago
parent
commit
e1cc1fe36f
  1. 12
      src/checkpoints.cpp

12
src/checkpoints.cpp

@ -121,18 +121,22 @@ namespace Checkpoints @@ -121,18 +121,22 @@ namespace Checkpoints
int GetTotalBlocksEstimate()
{
if (fTestNet) return 0; // Testnet has no checkpoints
return 0;
// TODO:
/*if (fTestNet) return 0; // Testnet has no checkpoints
if (!GetBoolArg("-checkpoints", true))
return 0;
const MapCheckpoints& checkpoints = *Checkpoints().mapCheckpoints;
return checkpoints.rbegin()->first;
return checkpoints.rbegin()->first;*/
}
CBlockIndex* GetLastCheckpoint(const std::map<uint256, CBlockIndex*>& mapBlockIndex)
{
if (fTestNet) return NULL; // Testnet has no checkpoints
return NULL;
// TODO:
/*if (fTestNet) return NULL; // Testnet has no checkpoints
if (!GetBoolArg("-checkpoints", true))
return NULL;
@ -145,6 +149,6 @@ namespace Checkpoints @@ -145,6 +149,6 @@ namespace Checkpoints
if (t != mapBlockIndex.end())
return t->second;
}
return NULL;
return NULL;*/
}
}

Loading…
Cancel
Save