PPCoin: Fixate official block chain parameters
[novacoin.git] / src / checkpoints.h
1 // Copyright (c) 2009-2012 The Bitcoin developers
2 // Copyright (c) 2011-2012 The PPCoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file COPYING 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 "net.h"
10 #include "util.h"
11
12 #define STAKE_MIN_AGE (60 * 60 * 24 * 30) // minimum age 30 days for coin age
13 #define CHECKPOINT_MAX_SPAN (60 * 60 * 4) // max 4 hours before latest block
14
15 class uint256;
16 class CBlockIndex;
17 class CSyncCheckpoint;
18
19 /** Block-chain checkpoints are compiled-in sanity checks.
20  * They are updated every release or three.
21  */
22 namespace Checkpoints
23 {
24     // Returns true if block passes checkpoint checks
25     bool CheckHardened(int nHeight, const uint256& hash);
26
27     // Return conservative estimate of total number of blocks, 0 if unknown
28     int GetTotalBlocksEstimate();
29
30     // Returns last CBlockIndex* in mapBlockIndex that is a checkpoint
31     CBlockIndex* GetLastCheckpoint(const std::map<uint256, CBlockIndex*>& mapBlockIndex);
32
33     extern uint256 hashSyncCheckpoint;
34     extern CSyncCheckpoint checkpointMessage;
35     extern uint256 hashInvalidCheckpoint;
36     extern CCriticalSection cs_hashSyncCheckpoint;
37
38     CBlockIndex* GetLastSyncCheckpoint();
39     bool WriteSyncCheckpoint(const uint256& hashCheckpoint);
40     bool AcceptPendingSyncCheckpoint();
41     uint256 AutoSelectSyncCheckpoint();
42     bool CheckSync(const uint256& hashBlock, const CBlockIndex* pindexPrev);
43     bool WantedByPendingSyncCheckpoint(uint256 hashBlock);
44     bool ResetSyncCheckpoint();
45     void AskForPendingSyncCheckpoint(CNode* pfrom);
46     bool SetCheckpointPrivKey(std::string strPrivKey);
47     bool SendSyncCheckpoint(uint256 hashCheckpoint);
48     bool IsMatureSyncCheckpoint();
49 }
50
51 // ppcoin: synchronized checkpoint
52 class CUnsignedSyncCheckpoint
53 {
54 public:
55     int nVersion;
56     uint256 hashCheckpoint;      // checkpoint block
57
58     IMPLEMENT_SERIALIZE
59     (
60         READWRITE(this->nVersion);
61         nVersion = this->nVersion;
62         READWRITE(hashCheckpoint);
63     )
64
65     void SetNull()
66     {
67         nVersion = 1;
68         hashCheckpoint = 0;
69     }
70
71     std::string ToString() const
72     {
73         return strprintf(
74                 "CSyncCheckpoint(\n"
75                 "    nVersion       = %d\n"
76                 "    hashCheckpoint = %s\n"
77                 ")\n",
78             nVersion,
79             hashCheckpoint.ToString().c_str());
80     }
81
82     void print() const
83     {
84         printf("%s", ToString().c_str());
85     }
86 };
87
88 class CSyncCheckpoint : public CUnsignedSyncCheckpoint
89 {
90 public:
91     static const std::string strMasterPubKey;
92     static std::string strMasterPrivKey;
93
94     std::vector<unsigned char> vchMsg;
95     std::vector<unsigned char> vchSig;
96
97     CSyncCheckpoint()
98     {
99         SetNull();
100     }
101
102     IMPLEMENT_SERIALIZE
103     (
104         READWRITE(vchMsg);
105         READWRITE(vchSig);
106     )
107
108     void SetNull()
109     {
110         CUnsignedSyncCheckpoint::SetNull();
111         vchMsg.clear();
112         vchSig.clear();
113     }
114
115     bool IsNull() const
116     {
117         return (hashCheckpoint == 0);
118     }
119
120     uint256 GetHash() const
121     {
122         return SerializeHash(*this);
123     }
124
125     bool RelayTo(CNode* pnode) const
126     {
127         // returns true if wasn't already sent
128         if (pnode->hashCheckpointKnown != hashCheckpoint)
129         {
130             pnode->hashCheckpointKnown = hashCheckpoint;
131             pnode->PushMessage("checkpoint", *this);
132             return true;
133         }
134         return false;
135     }
136
137     bool CheckSignature();
138     bool ProcessSyncCheckpoint(CNode* pfrom);
139 };
140
141 #endif