Replace checkpoint.
[novacoin.git] / src / kernel.cpp
1 // Copyright (c) 2012-2013 The PPCoin developers
2 // Copyright (c) 2013-2015 The Novacoin 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 // Distributed under the MIT/X11 software license, see the accompanying
6 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
7
8 #include <boost/assign/list_of.hpp>
9
10 #include "kernel.h"
11 #include "kernel_worker.h"
12 #include "txdb.h"
13
14 extern unsigned int nStakeMaxAge;
15 extern unsigned int nStakeTargetSpacing;
16
17 using namespace std;
18
19
20 // Protocol switch time for fixed kernel modifier interval
21 unsigned int nModifierSwitchTime  = 1413763200;    // Mon, 20 Oct 2014 00:00:00 GMT
22 unsigned int nModifierTestSwitchTime = 1397520000; // Tue, 15 Apr 2014 00:00:00 GMT
23
24 // Note: user must upgrade before the protocol switch deadline, otherwise it's required to
25 //   re-download the blockchain. The timestamp of upgrade is recorded in the blockchain 
26 //   database.
27 unsigned int nModifierUpgradeTime = 0;
28
29 typedef std::map<int, unsigned int> MapModifierCheckpoints;
30
31 // Hard checkpoints of stake modifiers to ensure they are deterministic
32 static std::map<int, unsigned int> mapStakeModifierCheckpoints =
33     boost::assign::map_list_of
34         ( 0, 0x0e00670bu )
35         ( 12661, 0x5d84115du )
36         (143990, 0x9c592c78u )
37         (149000, 0x48f2bdc4u )
38         (160000, 0x789df0f0u )
39         (200000, 0x01ec1503u )
40         (221047, 0x0b39ef50u )
41     ;
42
43 // Hard checkpoints of stake modifiers to ensure they are deterministic (testNet)
44 static std::map<int, unsigned int> mapStakeModifierCheckpointsTestNet =
45     boost::assign::map_list_of
46         ( 0, 0x0e00670bu )
47     ;
48
49 // Pregenerated entropy bits table (from genesis to #9689)
50 //
51 // Bits are packed into array of 256 bit integers:
52 //
53 // * array index calculated as nHeight / 256
54 // * position of bit is calculated as nHeight & 0xFF.
55 //
56 const uint256 entropyStore[] = {
57     uint256("0x4555b4dcc1d690ddd9b810c90c66e82b18bf4f43cc887246c418383ec120a5ab"),
58     uint256("0xaa6d1198412fa77608addf6549c9198a22155e8afd7a9ded6179f6b7cfc66b0c"),
59     uint256("0x9442fabfa4116fb14a9769c2eea003845a1f5c3a0260f36b497d68f3a3cd4078"),
60     uint256("0x0e769042a9a98e42388195d699574b822d06515f7053ad884c53d7ee059f05b1"),
61     uint256("0x7005aac20baf70251aebfe3f1b95987d83ef1e3e6963de8fed601d4dd07bf7cf"),
62     uint256("0x58952c5c3de188f2e33c38d3f53d7bf44f9bc545a4289d266696273fa821be66"),
63     uint256("0x50b6c2ed780c08aaec3f7665b1b6004206243e3866456fc910b83b52d07eeb63"),
64     uint256("0x563841eefca85ba3384986c58100408ae3f1ba2ac727e1ac910ce154a06c702f"),
65     uint256("0x79275b03938b3e27a9b01a7f7953c6c487c58355f5d4169accfbb800213ffd13"),
66     uint256("0xd783f2538b3ed18f135af90adc687c5646d93aeaeaabc6667be94f7aa0a2d366"),
67     uint256("0xb441d0c175c40c8e88b09d88ea008af79cbed2d28219427d2e72fda682974db8"),
68     uint256("0x3204c43bd41f2e19628af3b0c9aca3db15bca4c8705d51056e7b17a319c04715"),
69     uint256("0x7e80e6ab7857d8f2f261a0a49c783bd800b365b8c9b85cc0e13f73904b0dcaa9"),
70     uint256("0xefaaee60ed82d2ad145c0e347941fdb131eb8fd289a45eef07121a93f283c5f1"),
71     uint256("0x3efc86e4334da332c1fd4c12513c40cff689f3efdc7f9913230822adacdda4f9"),
72     uint256("0xf0d6b8f38599a017fa35d1fbbf9ef51eca5ebc5b286aadba40c4c3e1d9bace0c"),
73     uint256("0x286a67f27323486036a0a92d35382fc8963c0c00bad331723318b4b9fdb2b56e"),
74     uint256("0xecbfaaa6567c54f08c4d5bd0118a2d7b58740f42cbfc73aa1536c1f5f76de87c"),
75     uint256("0xf9a4de1c5c46520de5aaf10d3796cf0e27ddce98b3398357f5726a949664e308"),
76     uint256("0xd75e6c4dc4be08401e3478d2467d9ab96a62af4f255c04a82c41af0de0a487bb"),
77     uint256("0x1a82c3bc6ad6047294c16571b5e2b7316c97bf8813e7da15798b9820d67e39f2"),
78     uint256("0xb49be0080de564e01829ded7e7971979565a741c5975dc9978dcc020192d396c"),
79     uint256("0x0d8eed113be67663b5a15a0625a9b49792b5ea59c005c4f405914877acab7000"),
80     uint256("0x8f9d46e2bc05a218ffa942965b747056197d393b097085523640cd59e07fe7c7"),
81     uint256("0x7a63ab40bc7f40ac2ebe9ede438d97b45fa6ed6f8419016da8d5f7a670111dda"),
82     uint256("0x63fbcc080448c43d6cf915c958314feff7a95a52ba43a68c05fc281d3a522d25"),
83     uint256("0xf834cf824c326d3ea861ea1e85dc3289265e37045981e28208e7344a7f8081d7"),
84     uint256("0xb4edc22ec98cc49b2f5af5bae3f52f5e6058280f74f2c432c2dd89ae49acceb8"),
85     uint256("0x0fe596037dcf81bf5c64f39755261c404ed088af5c8c31dd7549b6657ee92365"),
86     uint256("0xbbad51a0aeba254b01d18c328de9e932b9b859b61e622c325d64e2211b5e413d"),
87     uint256("0xabf0194cc787be938bc51c7fdf1cae4ec79e65ebab8fa8b8f40541c44ef384b0"),
88     uint256("0x83bc12d6fdbd3e854cb91c4ca7dfba3c38e8714121af88c8a8abdb33e5002438"),
89     uint256("0x71a2513026cabaedcbe55aeb6dc8049e5b763a3f54f10c33dd333624f764b38c"),
90     uint256("0xee6725632ff5c025dff6a18cd059875dcae20f399b03bccba13d9d5fcf6d9d9a"),
91     uint256("0xa168a2741d1e7e50cc74b79f695c25ffd3576e6bd61353c2a20e569fd63b2dac"),
92     uint256("0x6e462d2a87bfde9398b6747f94a8ed6a01e4d96c5b4372df5c910c106c48bd13"),
93     uint256("0x8eeb696181957c4b22434028990f49cb30006827c73860e77e2eecf5c38be99d"),
94     uint256("0x3188aaa65877b166f05cdc48f55b1f77a7d6fb221c395596d990ae5647e9ba96")
95 };
96
97 // Whether the given block is subject to new modifier protocol
98 bool IsFixedModifierInterval(unsigned int nTimeBlock)
99 {
100     return (nTimeBlock >= (fTestNet? nModifierTestSwitchTime : nModifierSwitchTime));
101 }
102
103 // Get the last stake modifier and its generation time from a given block
104 static bool GetLastStakeModifier(const CBlockIndex* pindex, uint64_t& nStakeModifier, int64_t& nModifierTime)
105 {
106     if (!pindex)
107         return error("GetLastStakeModifier: null pindex");
108     while (pindex && pindex->pprev && !pindex->GeneratedStakeModifier())
109         pindex = pindex->pprev;
110     if (!pindex->GeneratedStakeModifier())
111         return error("GetLastStakeModifier: no generation at genesis block");
112     nStakeModifier = pindex->nStakeModifier;
113     nModifierTime = pindex->GetBlockTime();
114     return true;
115 }
116
117 // Get selection interval section (in seconds)
118 static int64_t GetStakeModifierSelectionIntervalSection(int nSection)
119 {
120     assert (nSection >= 0 && nSection < 64);
121     return (nModifierInterval * 63 / (63 + ((63 - nSection) * (MODIFIER_INTERVAL_RATIO - 1))));
122 }
123
124 // Get stake modifier selection interval (in seconds)
125 static int64_t GetStakeModifierSelectionInterval()
126 {
127     int64_t nSelectionInterval = 0;
128     for (int nSection=0; nSection<64; nSection++)
129         nSelectionInterval += GetStakeModifierSelectionIntervalSection(nSection);
130     return nSelectionInterval;
131 }
132
133 // select a block from the candidate blocks in vSortedByTimestamp, excluding
134 // already selected blocks in vSelectedBlocks, and with timestamp up to
135 // nSelectionIntervalStop.
136 static bool SelectBlockFromCandidates(vector<pair<int64_t, uint256> >& vSortedByTimestamp, map<uint256, const CBlockIndex*>& mapSelectedBlocks,
137     int64_t nSelectionIntervalStop, uint64_t nStakeModifierPrev, const CBlockIndex** pindexSelected)
138 {
139     bool fSelected = false;
140     uint256 hashBest = 0;
141     *pindexSelected = (const CBlockIndex*) 0;
142     BOOST_FOREACH(const PAIRTYPE(int64_t, uint256)& item, vSortedByTimestamp)
143     {
144         if (!mapBlockIndex.count(item.second))
145             return error("SelectBlockFromCandidates: failed to find block index for candidate block %s", item.second.ToString().c_str());
146         const CBlockIndex* pindex = mapBlockIndex[item.second];
147         if (fSelected && pindex->GetBlockTime() > nSelectionIntervalStop)
148             break;
149         if (mapSelectedBlocks.count(pindex->GetBlockHash()) > 0)
150             continue;
151         // compute the selection hash by hashing its proof-hash and the
152         // previous proof-of-stake modifier
153         uint256 hashProof = pindex->IsProofOfStake()? pindex->hashProofOfStake : pindex->GetBlockHash();
154         CDataStream ss(SER_GETHASH, 0);
155         ss << hashProof << nStakeModifierPrev;
156         uint256 hashSelection = Hash(ss.begin(), ss.end());
157         // the selection hash is divided by 2**32 so that proof-of-stake block
158         // is always favored over proof-of-work block. this is to preserve
159         // the energy efficiency property
160         if (pindex->IsProofOfStake())
161             hashSelection >>= 32;
162         if (fSelected && hashSelection < hashBest)
163         {
164             hashBest = hashSelection;
165             *pindexSelected = (const CBlockIndex*) pindex;
166         }
167         else if (!fSelected)
168         {
169             fSelected = true;
170             hashBest = hashSelection;
171             *pindexSelected = (const CBlockIndex*) pindex;
172         }
173     }
174     if (fDebug && GetBoolArg("-printstakemodifier"))
175         printf("SelectBlockFromCandidates: selection hash=%s\n", hashBest.ToString().c_str());
176     return fSelected;
177 }
178
179 // Stake Modifier (hash modifier of proof-of-stake):
180 // The purpose of stake modifier is to prevent a txout (coin) owner from
181 // computing future proof-of-stake generated by this txout at the time
182 // of transaction confirmation. To meet kernel protocol, the txout
183 // must hash with a future stake modifier to generate the proof.
184 // Stake modifier consists of bits each of which is contributed from a
185 // selected block of a given block group in the past.
186 // The selection of a block is based on a hash of the block's proof-hash and
187 // the previous stake modifier.
188 // Stake modifier is recomputed at a fixed time interval instead of every 
189 // block. This is to make it difficult for an attacker to gain control of
190 // additional bits in the stake modifier, even after generating a chain of
191 // blocks.
192 bool ComputeNextStakeModifier(const CBlockIndex* pindexCurrent, uint64_t& nStakeModifier, bool& fGeneratedStakeModifier)
193 {
194     nStakeModifier = 0;
195     fGeneratedStakeModifier = false;
196     const CBlockIndex* pindexPrev = pindexCurrent->pprev;
197     if (!pindexPrev)
198     {
199         fGeneratedStakeModifier = true;
200         return true;  // genesis block's modifier is 0
201     }
202
203     // First find current stake modifier and its generation block time
204     // if it's not old enough, return the same stake modifier
205     int64_t nModifierTime = 0;
206     if (!GetLastStakeModifier(pindexPrev, nStakeModifier, nModifierTime))
207         return error("ComputeNextStakeModifier: unable to get last modifier");
208     if (fDebug)
209     {
210         printf("ComputeNextStakeModifier: prev modifier=0x%016" PRIx64 " time=%s epoch=%u\n", nStakeModifier, DateTimeStrFormat(nModifierTime).c_str(), (unsigned int)nModifierTime);
211     }
212     if (nModifierTime / nModifierInterval >= pindexPrev->GetBlockTime() / nModifierInterval)
213     {
214         if (fDebug)
215         {
216             printf("ComputeNextStakeModifier: no new interval keep current modifier: pindexPrev nHeight=%d nTime=%u\n", pindexPrev->nHeight, (unsigned int)pindexPrev->GetBlockTime());
217         }
218         return true;
219     }
220     if (nModifierTime / nModifierInterval >= pindexCurrent->GetBlockTime() / nModifierInterval)
221     {
222         // fixed interval protocol requires current block timestamp also be in a different modifier interval
223         if (IsFixedModifierInterval(pindexCurrent->nTime))
224         {
225             if (fDebug)
226             {
227                 printf("ComputeNextStakeModifier: no new interval keep current modifier: pindexCurrent nHeight=%d nTime=%u\n", pindexCurrent->nHeight, (unsigned int)pindexCurrent->GetBlockTime());
228             }
229             return true;
230         }
231         else
232         {
233             if (fDebug)
234             {
235                 printf("ComputeNextStakeModifier: old modifier at block %s not meeting fixed modifier interval: pindexCurrent nHeight=%d nTime=%u\n", pindexCurrent->GetBlockHash().ToString().c_str(), pindexCurrent->nHeight, (unsigned int)pindexCurrent->GetBlockTime());
236             }
237         }
238     }
239
240     // Sort candidate blocks by timestamp
241     vector<pair<int64_t, uint256> > vSortedByTimestamp;
242     vSortedByTimestamp.reserve(64 * nModifierInterval / nStakeTargetSpacing);
243     int64_t nSelectionInterval = GetStakeModifierSelectionInterval();
244     int64_t nSelectionIntervalStart = (pindexPrev->GetBlockTime() / nModifierInterval) * nModifierInterval - nSelectionInterval;
245     const CBlockIndex* pindex = pindexPrev;
246     while (pindex && pindex->GetBlockTime() >= nSelectionIntervalStart)
247     {
248         vSortedByTimestamp.push_back(make_pair(pindex->GetBlockTime(), pindex->GetBlockHash()));
249         pindex = pindex->pprev;
250     }
251     int nHeightFirstCandidate = pindex ? (pindex->nHeight + 1) : 0;
252     reverse(vSortedByTimestamp.begin(), vSortedByTimestamp.end());
253     sort(vSortedByTimestamp.begin(), vSortedByTimestamp.end());
254
255     // Select 64 blocks from candidate blocks to generate stake modifier
256     uint64_t nStakeModifierNew = 0;
257     int64_t nSelectionIntervalStop = nSelectionIntervalStart;
258     map<uint256, const CBlockIndex*> mapSelectedBlocks;
259     for (int nRound=0; nRound<min(64, (int)vSortedByTimestamp.size()); nRound++)
260     {
261         // add an interval section to the current selection round
262         nSelectionIntervalStop += GetStakeModifierSelectionIntervalSection(nRound);
263         // select a block from the candidates of current round
264         if (!SelectBlockFromCandidates(vSortedByTimestamp, mapSelectedBlocks, nSelectionIntervalStop, nStakeModifier, &pindex))
265             return error("ComputeNextStakeModifier: unable to select block at round %d", nRound);
266         // write the entropy bit of the selected block
267         nStakeModifierNew |= (((uint64_t)pindex->GetStakeEntropyBit()) << nRound);
268         // add the selected block from candidates to selected list
269         mapSelectedBlocks.insert(make_pair(pindex->GetBlockHash(), pindex));
270         if (fDebug && GetBoolArg("-printstakemodifier"))
271             printf("ComputeNextStakeModifier: selected round %d stop=%s height=%d bit=%d\n", nRound, DateTimeStrFormat(nSelectionIntervalStop).c_str(), pindex->nHeight, pindex->GetStakeEntropyBit());
272     }
273
274     // Print selection map for visualization of the selected blocks
275     if (fDebug && GetBoolArg("-printstakemodifier"))
276     {
277         string strSelectionMap = "";
278         // '-' indicates proof-of-work blocks not selected
279         strSelectionMap.insert(0, pindexPrev->nHeight - nHeightFirstCandidate + 1, '-');
280         pindex = pindexPrev;
281         while (pindex && pindex->nHeight >= nHeightFirstCandidate)
282         {
283             // '=' indicates proof-of-stake blocks not selected
284             if (pindex->IsProofOfStake())
285                 strSelectionMap.replace(pindex->nHeight - nHeightFirstCandidate, 1, "=");
286             pindex = pindex->pprev;
287         }
288         BOOST_FOREACH(const PAIRTYPE(uint256, const CBlockIndex*)& item, mapSelectedBlocks)
289         {
290             // 'S' indicates selected proof-of-stake blocks
291             // 'W' indicates selected proof-of-work blocks
292             strSelectionMap.replace(item.second->nHeight - nHeightFirstCandidate, 1, item.second->IsProofOfStake()? "S" : "W");
293         }
294         printf("ComputeNextStakeModifier: selection height [%d, %d] map %s\n", nHeightFirstCandidate, pindexPrev->nHeight, strSelectionMap.c_str());
295     }
296     if (fDebug)
297     {
298         printf("ComputeNextStakeModifier: new modifier=0x%016" PRIx64 " time=%s\n", nStakeModifierNew, DateTimeStrFormat(pindexPrev->GetBlockTime()).c_str());
299     }
300
301     nStakeModifier = nStakeModifierNew;
302     fGeneratedStakeModifier = true;
303     return true;
304 }
305
306 // The stake modifier used to hash for a stake kernel is chosen as the stake
307 // modifier about a selection interval later than the coin generating the kernel
308 static bool GetKernelStakeModifier(uint256 hashBlockFrom, uint64_t& nStakeModifier, int& nStakeModifierHeight, int64_t& nStakeModifierTime, bool fPrintProofOfStake)
309 {
310     nStakeModifier = 0;
311     if (!mapBlockIndex.count(hashBlockFrom))
312         return error("GetKernelStakeModifier() : block not indexed");
313     const CBlockIndex* pindexFrom = mapBlockIndex[hashBlockFrom];
314     nStakeModifierHeight = pindexFrom->nHeight;
315     nStakeModifierTime = pindexFrom->GetBlockTime();
316     int64_t nStakeModifierSelectionInterval = GetStakeModifierSelectionInterval();
317     const CBlockIndex* pindex = pindexFrom;
318     // loop to find the stake modifier later by a selection interval
319     while (nStakeModifierTime < pindexFrom->GetBlockTime() + nStakeModifierSelectionInterval)
320     {
321         if (!pindex->pnext)
322         {   // reached best block; may happen if node is behind on block chain
323             if (fPrintProofOfStake || (pindex->GetBlockTime() + nStakeMinAge - nStakeModifierSelectionInterval > GetAdjustedTime()))
324                 return error("GetKernelStakeModifier() : reached best block %s at height %d from block %s",
325                     pindex->GetBlockHash().ToString().c_str(), pindex->nHeight, hashBlockFrom.ToString().c_str());
326             else
327                 return false;
328         }
329         pindex = pindex->pnext;
330         if (pindex->GeneratedStakeModifier())
331         {
332             nStakeModifierHeight = pindex->nHeight;
333             nStakeModifierTime = pindex->GetBlockTime();
334         }
335     }
336     nStakeModifier = pindex->nStakeModifier;
337     return true;
338 }
339
340 bool GetKernelStakeModifier(uint256 hashBlockFrom, uint64_t& nStakeModifier)
341 {
342     int nStakeModifierHeight;
343     int64_t nStakeModifierTime;
344
345     return GetKernelStakeModifier(hashBlockFrom, nStakeModifier, nStakeModifierHeight, nStakeModifierTime, false);
346 }
347
348
349 // ppcoin kernel protocol
350 // coinstake must meet hash target according to the protocol:
351 // kernel (input 0) must meet the formula
352 //     hash(nStakeModifier + txPrev.block.nTime + txPrev.offset + txPrev.nTime + txPrev.vout.n + nTime) < bnTarget * nCoinDayWeight
353 // this ensures that the chance of getting a coinstake is proportional to the
354 // amount of coin age one owns.
355 // The reason this hash is chosen is the following:
356 //   nStakeModifier: scrambles computation to make it very difficult to precompute
357 //                  future proof-of-stake at the time of the coin's confirmation
358 //   txPrev.block.nTime: prevent nodes from guessing a good timestamp to
359 //                       generate transaction for future advantage
360 //   txPrev.offset: offset of txPrev inside block, to reduce the chance of 
361 //                  nodes generating coinstake at the same time
362 //   txPrev.nTime: reduce the chance of nodes generating coinstake at the same
363 //                 time
364 //   txPrev.vout.n: output number of txPrev, to reduce the chance of nodes
365 //                  generating coinstake at the same time
366 //   block/tx hash should not be used here as they can be generated in vast
367 //   quantities so as to generate blocks faster, degrading the system back into
368 //   a proof-of-work situation.
369 //
370 bool CheckStakeKernelHash(uint32_t nBits, const CBlock& blockFrom, uint32_t nTxPrevOffset, const CTransaction& txPrev, const COutPoint& prevout, uint32_t nTimeTx, uint256& hashProofOfStake, uint256& targetProofOfStake, bool fPrintProofOfStake)
371 {
372     if (nTimeTx < txPrev.nTime)  // Transaction timestamp violation
373         return error("CheckStakeKernelHash() : nTime violation");
374
375     uint32_t nTimeBlockFrom = blockFrom.GetBlockTime();
376     if (nTimeBlockFrom + nStakeMinAge > nTimeTx) // Min age requirement
377         return error("CheckStakeKernelHash() : min age violation");
378
379     CBigNum bnTargetPerCoinDay;
380     bnTargetPerCoinDay.SetCompact(nBits);
381     int64_t nValueIn = txPrev.vout[prevout.n].nValue;
382
383     uint256 hashBlockFrom = blockFrom.GetHash();
384
385     CBigNum bnCoinDayWeight = CBigNum(nValueIn) * GetWeight((int64_t)txPrev.nTime, (int64_t)nTimeTx) / COIN / nOneDay;
386     targetProofOfStake = (bnCoinDayWeight * bnTargetPerCoinDay).getuint256();
387
388     // Calculate hash
389     CDataStream ss(SER_GETHASH, 0);
390     uint64_t nStakeModifier = 0;
391     int nStakeModifierHeight = 0;
392     int64_t nStakeModifierTime = 0;
393
394     if (!GetKernelStakeModifier(hashBlockFrom, nStakeModifier, nStakeModifierHeight, nStakeModifierTime, fPrintProofOfStake))
395         return false;
396     ss << nStakeModifier;
397
398     ss << nTimeBlockFrom << nTxPrevOffset << txPrev.nTime << prevout.n << nTimeTx;
399     hashProofOfStake = Hash(ss.begin(), ss.end());
400     if (fPrintProofOfStake)
401     {
402         printf("CheckStakeKernelHash() : using modifier 0x%016" PRIx64 " at height=%d timestamp=%s for block from height=%d timestamp=%s\n",
403             nStakeModifier, nStakeModifierHeight,
404             DateTimeStrFormat(nStakeModifierTime).c_str(),
405             mapBlockIndex[hashBlockFrom]->nHeight,
406             DateTimeStrFormat(blockFrom.GetBlockTime()).c_str());
407         printf("CheckStakeKernelHash() : check modifier=0x%016" PRIx64 " nTimeBlockFrom=%u nTxPrevOffset=%u nTimeTxPrev=%u nPrevout=%u nTimeTx=%u hashTarget=%s hashProof=%s\n",
408             nStakeModifier,
409             nTimeBlockFrom, nTxPrevOffset, txPrev.nTime, prevout.n, nTimeTx,
410             targetProofOfStake.ToString().c_str(), hashProofOfStake.ToString().c_str());
411     }
412
413     // Now check if proof-of-stake hash meets target protocol
414     if (CBigNum(hashProofOfStake) > bnCoinDayWeight * bnTargetPerCoinDay)
415         return false;
416     if (fDebug && !fPrintProofOfStake)
417     {
418         printf("CheckStakeKernelHash() : using modifier 0x%016" PRIx64 " at height=%d timestamp=%s for block from height=%d timestamp=%s\n",
419             nStakeModifier, nStakeModifierHeight, 
420             DateTimeStrFormat(nStakeModifierTime).c_str(),
421             mapBlockIndex[hashBlockFrom]->nHeight,
422             DateTimeStrFormat(blockFrom.GetBlockTime()).c_str());
423         printf("CheckStakeKernelHash() : pass modifier=0x%016" PRIx64 " nTimeBlockFrom=%u nTxPrevOffset=%u nTimeTxPrev=%u nPrevout=%u nTimeTx=%u hashTarget=%s hashProof=%s\n",
424             nStakeModifier,
425             nTimeBlockFrom, nTxPrevOffset, txPrev.nTime, prevout.n, nTimeTx,
426             targetProofOfStake.ToString().c_str(), hashProofOfStake.ToString().c_str());
427     }
428     return true;
429 }
430
431 // Scan given kernel for solution
432 bool ScanKernelForward(unsigned char *kernel, uint32_t nBits, uint32_t nInputTxTime, int64_t nValueIn, std::pair<uint32_t, uint32_t> &SearchInterval, std::vector<std::pair<uint256, uint32_t> > &solutions)
433 {
434     // TODO: custom threads amount
435
436     uint32_t nThreads = boost::thread::hardware_concurrency();
437     uint32_t nPart = (SearchInterval.second - SearchInterval.first) / nThreads;
438
439
440     KernelWorker *workers = new KernelWorker[nThreads];
441
442     boost::thread_group group;
443     for(size_t i = 0; i < nThreads; i++)
444     {
445         uint32_t nBegin = SearchInterval.first + nPart * i;
446         uint32_t nEnd = SearchInterval.first + nPart * (i + 1);
447         workers[i] = KernelWorker(kernel, nBits, nInputTxTime, nValueIn, nBegin, nEnd);
448         boost::function<void()> workerFnc = boost::bind(&KernelWorker::Do, &workers[i]);
449         group.create_thread(workerFnc);
450     }
451
452     group.join_all();
453     solutions.clear();
454
455     for(size_t i = 0; i < nThreads; i++)
456     {
457         std::vector<std::pair<uint256, uint32_t> > ws = workers[i].GetSolutions();
458         solutions.insert(solutions.end(), ws.begin(), ws.end());
459     }
460
461     delete [] workers;
462
463     if (solutions.size() == 0)
464     {
465         // no solutions
466         return false;
467     }
468
469     return true;
470 }
471
472 // Check kernel hash target and coinstake signature
473 bool CheckProofOfStake(const CTransaction& tx, unsigned int nBits, uint256& hashProofOfStake, uint256& targetProofOfStake)
474 {
475     if (!tx.IsCoinStake())
476         return error("CheckProofOfStake() : called on non-coinstake %s", tx.GetHash().ToString().c_str());
477
478     // Kernel (input 0) must match the stake hash target per coin age (nBits)
479     const CTxIn& txin = tx.vin[0];
480
481     // First try finding the previous transaction in database
482     CTxDB txdb("r");
483     CTransaction txPrev;
484     CTxIndex txindex;
485     if (!txPrev.ReadFromDisk(txdb, txin.prevout, txindex))
486         return tx.DoS(1, error("CheckProofOfStake() : INFO: read txPrev failed"));  // previous transaction not in main chain, may occur during initial download
487
488 #ifndef USE_LEVELDB
489     txdb.Close();
490 #endif
491
492     // Verify signature
493     if (!VerifySignature(txPrev, tx, 0, MANDATORY_SCRIPT_VERIFY_FLAGS, 0))
494         return tx.DoS(100, error("CheckProofOfStake() : VerifySignature failed on coinstake %s", tx.GetHash().ToString().c_str()));
495
496     // Read block header
497     CBlock block;
498     if (!block.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos, false))
499         return fDebug? error("CheckProofOfStake() : read block failed") : false; // unable to read block of previous transaction
500
501     if (!CheckStakeKernelHash(nBits, block, txindex.pos.nTxPos - txindex.pos.nBlockPos, txPrev, txin.prevout, tx.nTime, hashProofOfStake, targetProofOfStake, fDebug))
502         return tx.DoS(1, error("CheckProofOfStake() : INFO: check kernel failed on coinstake %s, hashProof=%s", tx.GetHash().ToString().c_str(), hashProofOfStake.ToString().c_str())); // may occur during initial download or if behind on block chain sync
503
504     return true;
505 }
506
507 // Get stake modifier checksum
508 uint32_t GetStakeModifierChecksum(const CBlockIndex* pindex)
509 {
510     assert (pindex->pprev || pindex->GetBlockHash() == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet));
511     // Hash previous checksum with flags, hashProofOfStake and nStakeModifier
512     CDataStream ss(SER_GETHASH, 0);
513     if (pindex->pprev)
514         ss << pindex->pprev->nStakeModifierChecksum;
515     ss << pindex->nFlags << pindex->hashProofOfStake << pindex->nStakeModifier;
516     uint256 hashChecksum = Hash(ss.begin(), ss.end());
517     hashChecksum >>= (256 - 32);
518     return static_cast<uint32_t>(hashChecksum.Get64());
519 }
520
521 // Check stake modifier hard checkpoints
522 bool CheckStakeModifierCheckpoints(int nHeight, uint32_t nStakeModifierChecksum)
523 {
524     MapModifierCheckpoints& checkpoints = (fTestNet ? mapStakeModifierCheckpointsTestNet : mapStakeModifierCheckpoints);
525
526     if (checkpoints.count(nHeight))
527         return nStakeModifierChecksum == checkpoints[nHeight];
528     return true;
529 }