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