2013-10-20 21:25:06 +02:00
|
|
|
// Copyright (c) 2009-2013 The Bitcoin developers
|
2011-09-08 22:50:58 +02:00
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
2012-05-18 16:02:28 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2011-09-08 22:50:58 +02:00
|
|
|
#ifndef BITCOIN_CHECKPOINT_H
|
2013-01-18 15:07:05 +01:00
|
|
|
#define BITCOIN_CHECKPOINT_H
|
2011-09-08 22:50:58 +02:00
|
|
|
|
2011-09-08 18:51:43 +02:00
|
|
|
#include <map>
|
|
|
|
|
|
|
|
class CBlockIndex;
|
2013-04-13 07:13:08 +02:00
|
|
|
class uint256;
|
2011-09-08 22:50:58 +02:00
|
|
|
|
2012-03-26 16:48:23 +02:00
|
|
|
/** Block-chain checkpoints are compiled-in sanity checks.
|
|
|
|
* They are updated every release or three.
|
|
|
|
*/
|
2014-09-19 19:21:46 +02:00
|
|
|
namespace Checkpoints
|
|
|
|
{
|
|
|
|
// Returns true if block passes checkpoint checks
|
|
|
|
bool CheckBlock(int nHeight, const uint256& hash);
|
2014-06-24 14:17:43 +02:00
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
// Return conservative estimate of total number of blocks, 0 if unknown
|
|
|
|
int GetTotalBlocksEstimate();
|
2011-09-08 22:50:58 +02:00
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
// Returns last CBlockIndex* in mapBlockIndex that is a checkpoint
|
|
|
|
CBlockIndex* GetLastCheckpoint();
|
2011-09-08 18:51:43 +02:00
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
double GuessVerificationProgress(CBlockIndex* pindex, bool fSigchecks = true);
|
2013-02-10 19:46:42 +01:00
|
|
|
|
2014-09-19 19:21:46 +02:00
|
|
|
extern bool fEnabled;
|
2014-06-24 14:17:43 +02:00
|
|
|
|
|
|
|
} //namespace Checkpoints
|
2011-09-08 22:50:58 +02:00
|
|
|
|
2014-08-28 22:21:03 +02:00
|
|
|
#endif // BITCOIN_CHECKPOINT_H
|