2082b5574c
GetTotalBlocksEstimate is no longer used and it was the only thing the checkpoint tests were testing. Since checkpoints are on their way out it makes more sense to remove the test file than to cook up a new pointless test.
29 lines
771 B
C++
29 lines
771 B
C++
// Copyright (c) 2009-2015 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_CHECKPOINTS_H
|
|
#define BITCOIN_CHECKPOINTS_H
|
|
|
|
#include "uint256.h"
|
|
|
|
#include <map>
|
|
|
|
class CBlockIndex;
|
|
struct CCheckpointData;
|
|
|
|
/**
|
|
* Block-chain checkpoints are compiled-in sanity checks.
|
|
* They are updated every release or three.
|
|
*/
|
|
namespace Checkpoints
|
|
{
|
|
|
|
//! Returns last CBlockIndex* in mapBlockIndex that is a checkpoint
|
|
CBlockIndex* GetLastCheckpoint(const CCheckpointData& data);
|
|
|
|
double GuessVerificationProgress(const CCheckpointData& data, CBlockIndex* pindex, bool fSigchecks = true);
|
|
|
|
} //namespace Checkpoints
|
|
|
|
#endif // BITCOIN_CHECKPOINTS_H
|