2014-12-16 22:47:57 -03:00
|
|
|
// Copyright (c) 2009-2014 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;
|
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
|
|
|
typedef std::map<int, uint256> MapCheckpoints;
|
|
|
|
|
|
|
|
struct CCheckpointData {
|
2015-04-22 18:55:00 -03:00
|
|
|
MapCheckpoints mapCheckpoints;
|
2014-08-31 15:32:23 -04:00
|
|
|
int64_t nTimeLastCheckpoint;
|
|
|
|
int64_t nTransactionsLastCheckpoint;
|
|
|
|
double fTransactionsPerDay;
|
|
|
|
};
|
|
|
|
|
2014-10-30 21:43:19 -03:00
|
|
|
//! Return conservative estimate of total number of blocks, 0 if unknown
|
2015-04-22 19:19:11 -03:00
|
|
|
int GetTotalBlocksEstimate(const CCheckpointData& data);
|
2011-09-08 17:50:58 -03: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
|
|
|
|
2015-04-22 19:19:11 -03:00
|
|
|
double GuessVerificationProgress(const CCheckpointData& data, CBlockIndex* pindex, bool fSigchecks = true);
|
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
|