2018-01-02 14:12:05 -03:00
|
|
|
// Copyright (c) 2009-2017 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
|
|
|
|
2017-11-09 21:57:53 -03:00
|
|
|
#include <checkpoints.h>
|
2011-09-08 17:50:58 -03:00
|
|
|
|
2017-11-09 21:57:53 -03:00
|
|
|
#include <chain.h>
|
|
|
|
#include <chainparams.h>
|
|
|
|
#include <reverse_iterator.h>
|
|
|
|
#include <validation.h>
|
2012-04-15 17:10:54 -03:00
|
|
|
|
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
|