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.
|
2013-04-13 02:13:08 -03:00
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#ifndef BITCOIN_CHECKPOINTS_H
|
|
|
|
#define BITCOIN_CHECKPOINTS_H
|
2011-09-08 17:50:58 -03:00
|
|
|
|
2014-08-31 15:32:23 -04:00
|
|
|
#include "uint256.h"
|
|
|
|
|
2011-09-08 13:51:43 -03:00
|
|
|
#include <map>
|
|
|
|
|
|
|
|
class CBlockIndex;
|
2015-06-05 16:36:34 -03:00
|
|
|
struct CCheckpointData;
|
2011-09-08 17:50:58 -03:00
|
|
|
|
2015-04-28 11:48:28 -03:00
|
|
|
/**
|
2014-10-30 21:43:19 -03:00
|
|
|
* Block-chain checkpoints are compiled-in sanity checks.
|
2012-03-26 11:48:23 -03:00
|
|
|
* They are updated every release or three.
|
|
|
|
*/
|
2014-09-19 14:21:46 -03:00
|
|
|
namespace Checkpoints
|
|
|
|
{
|
2014-08-31 15:32:23 -04:00
|
|
|
|
2014-10-30 21:43:19 -03:00
|
|
|
//! Returns last CBlockIndex* in mapBlockIndex that is a checkpoint
|
2015-04-22 19:19:11 -03:00
|
|
|
CBlockIndex* GetLastCheckpoint(const CCheckpointData& data);
|
2011-09-08 13:51:43 -03:00
|
|
|
|
2014-06-24 08:17:43 -04:00
|
|
|
} //namespace Checkpoints
|
2011-09-08 17:50:58 -03:00
|
|
|
|
2014-11-03 12:16:40 -03:00
|
|
|
#endif // BITCOIN_CHECKPOINTS_H
|