mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-09-11 14:32:13 +00:00

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. Github-Pull: #9053 Rebased-From: 2082b5574cec783f4ff99941492d92e05680b293
30 lines
771 B
C++
30 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
|