Skip to content

Commit

Permalink
Actually add checkpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
gladoscc committed May 14, 2013
1 parent f8086d5 commit 992bdc9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/checkpoints.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ namespace Checkpoints
bool CheckBlock(int nHeight, const uint256& hash)
{
if (fTestNet) return true; // Testnet has no checkpoints
return true; //Elacoin has no checkpoints
MapCheckpoints::const_iterator i = mapCheckpoints.find(nHeight);
if (i == mapCheckpoints.end()) return true;
return hash == i->second;
Expand Down

0 comments on commit 992bdc9

Please sign in to comment.