PPCoin: Additional block/coinbase timestamp rules; various minor cleanups
[novacoin.git] / src / checkpoints.h
1 // Copyright (c) 2011 The Bitcoin developers
2 // Copyright (c) 2011 The PPCoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
5 #ifndef BITCOIN_CHECKPOINT_H
6 #define  BITCOIN_CHECKPOINT_H
7
8 #include <map>
9 #include "util.h"
10
11 // ppcoin: auto checkpoint min at 1 day; max at 5 days
12 #define AUTO_CHECKPOINT_MIN_SPAN   (60 * 60 * 24)
13 #define AUTO_CHECKPOINT_MAX_SPAN   (60 * 60 * 24 * 5)
14 #define AUTO_CHECKPOINT_TRUST_SPAN (60 * 60 * 24 * 7)
15
16 class uint256;
17 class CBlockIndex;
18
19 //
20 // Block-chain checkpoints are compiled-in sanity checks.
21 // They are updated every release or three.
22 //
23 namespace Checkpoints
24 {
25     extern int nAutoCheckpoint;
26
27     // Returns true if block passes checkpoint checks
28     bool CheckHardened(int nHeight, const uint256& hash);
29     bool CheckAuto(const CBlockIndex *pindex);
30
31     int  GetNextChainCheckpoint(const CBlockIndex *pindex);
32     int  GetNextAutoCheckpoint(int nCheckpoint);
33     void AdvanceAutoCheckpoint(int nCheckpoint);
34
35     // Return conservative estimate of total number of blocks, 0 if unknown
36     int GetTotalBlocksEstimate();
37
38     // Returns last CBlockIndex* in mapBlockIndex that is a checkpoint
39     CBlockIndex* GetLastCheckpoint(const std::map<uint256, CBlockIndex*>& mapBlockIndex);
40 }
41
42 #endif