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