2016-12-31 19:01:21 +01:00
|
|
|
// Copyright (c) 2009-2016 The Bitcoin Core developers
|
2014-10-31 01:43:19 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2012-05-18 16:02:28 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2011-09-08 22:50:58 +02:00
|
|
|
|
2011-09-08 18:51:43 +02:00
|
|
|
#include "checkpoints.h"
|
2011-09-08 22:50:58 +02:00
|
|
|
|
2015-07-05 14:17:46 +02:00
|
|
|
#include "chain.h"
|
2014-08-31 21:32:23 +02:00
|
|
|
#include "chainparams.h"
|
2016-12-02 01:06:41 +01:00
|
|
|
#include "validation.h"
|
2012-04-15 22:10:54 +02:00
|
|
|
#include "uint256.h"
|
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
|
2014-06-24 14:17:43 +02:00
|
|
|
namespace Checkpoints {
|
|
|
|
|
2015-04-23 00:19:11 +02:00
|
|
|
CBlockIndex* GetLastCheckpoint(const CCheckpointData& data)
|
2011-09-08 18:51:43 +02:00
|
|
|
{
|
2015-04-23 00:19:11 +02:00
|
|
|
const MapCheckpoints& checkpoints = data.mapCheckpoints;
|
2011-09-08 18:51:43 +02:00
|
|
|
|
2012-04-13 20:53:31 +02:00
|
|
|
BOOST_REVERSE_FOREACH(const MapCheckpoints::value_type& i, checkpoints)
|
2011-09-08 18:51:43 +02:00
|
|
|
{
|
|
|
|
const uint256& hash = i.second;
|
2014-09-04 02:02:44 +02:00
|
|
|
BlockMap::const_iterator t = mapBlockIndex.find(hash);
|
2011-09-08 18:51:43 +02:00
|
|
|
if (t != mapBlockIndex.end())
|
|
|
|
return t->second;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-06-24 14:17:43 +02:00
|
|
|
|
|
|
|
} // namespace Checkpoints
|