X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=blobdiff_plain;f=src%2Fcheckpoints.cpp;h=095def362fd35af8f3b8686e20297d2d71f74af8;hp=dba4b21aa21dec2ca62f8d5955a090e393845c5f;hb=f2b467c8d7d761dd47e58ad9ed4d8ede92a24601;hpb=534f63f45923e8fc00dbcd8b49e9dab3547463cb diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index dba4b21..095def3 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -4,6 +4,7 @@ #include // for 'map_list_of()' #include +#include #include "checkpoints.h" @@ -14,6 +15,7 @@ namespace Checkpoints { typedef std::map > MapCheckpoints; + typedef std::list ListBannedBlocks; // // What makes a good checkpoint block? @@ -32,6 +34,12 @@ namespace Checkpoints ( 200000, std::make_pair(uint256("0x0000000000029f8bbf66e6ea6f3e5db55009404aae0fe395a53dd33142b2bff2"), 1441127233) ) ( 221047, std::make_pair(uint256("0xa28aef712e7aa0c285bfe29351ca21ed416689139e3063ef770fc826a8b9e9da"), 1449431646) ) ; + + static ListBannedBlocks listBanned = + boost::assign::list_of + // Invalid block #221047 with future timestamp of 2016/02/23 09:24:17 UTC + ( uint256("0x46223e5432ceffe650d5729b4bb8479dcdf0ca1e534fa8e69382dc87b42ea94b") ) + ; // TestNet has no checkpoints static MapCheckpoints mapCheckpointsTestnet = @@ -48,6 +56,14 @@ namespace Checkpoints return hash == i->second.first; } + bool CheckBanned(const uint256 &nHash) + { + if (fTestNet) // Testnet has no banned blocks + return true; + ListBannedBlocks::const_iterator it = std::find(listBanned.begin(), listBanned.end(), nHash); + return it == listBanned.end(); + } + int GetTotalBlocksEstimate() { MapCheckpoints& checkpoints = (fTestNet ? mapCheckpointsTestnet : mapCheckpoints);