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
|
|
|
|
2017-11-10 01:57:53 +01:00
|
|
|
#include <checkpoints.h>
|
2011-09-08 22:50:58 +02:00
|
|
|
|
2017-11-10 01:57:53 +01:00
|
|
|
#include <chain.h>
|
|
|
|
#include <chainparams.h>
|
|
|
|
#include <reverse_iterator.h>
|
|
|
|
#include <validation.h>
|
2012-04-15 22:10:54 +02:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
|
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
|
|
|
|
2017-04-13 00:51:39 +02:00
|
|
|
for (const MapCheckpoints::value_type& i : reverse_iterate(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;
|
|
|
|
}
|
2017-08-07 07:36:37 +02:00
|
|
|
return nullptr;
|
2011-09-08 18:51:43 +02:00
|
|
|
}
|
2014-06-24 14:17:43 +02:00
|
|
|
|
|
|
|
} // namespace Checkpoints
|