Remove PoW CPU miner
[novacoin.git] / src / main.cpp
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2012 The Bitcoin 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
6 #include "alert.h"
7 #include "checkpoints.h"
8 #include "db.h"
9 #include "net.h"
10 #include "init.h"
11 #include "ui_interface.h"
12 #include "kernel.h"
13 #include "scrypt_mine.h"
14 #include <boost/algorithm/string/replace.hpp>
15 #include <boost/filesystem.hpp>
16 #include <boost/filesystem/fstream.hpp>
17
18 using namespace std;
19 using namespace boost;
20
21 //
22 // Global state
23 //
24
25 CCriticalSection cs_setpwalletRegistered;
26 set<CWallet*> setpwalletRegistered;
27
28 CCriticalSection cs_main;
29
30 CTxMemPool mempool;
31 unsigned int nTransactionsUpdated = 0;
32
33 map<uint256, CBlockIndex*> mapBlockIndex;
34 set<pair<COutPoint, unsigned int> > setStakeSeen;
35
36 CBigNum bnProofOfWorkLimit(~uint256(0) >> 20); // "standard" scrypt target limit for proof of work, results with 0,000244140625 proof-of-work difficulty
37 CBigNum bnProofOfStakeLegacyLimit(~uint256(0) >> 24); // proof of stake target limit from block #15000 and until 20 June 2013, results with 0,00390625 proof of stake difficulty
38 CBigNum bnProofOfStakeLimit(~uint256(0) >> 27); // proof of stake target limit since 20 June 2013, equal to 0.03125  proof of stake difficulty
39 CBigNum bnProofOfStakeHardLimit(~uint256(0) >> 30); // disabled temporarily, will be used in the future to fix minimal proof of stake difficulty at 0.25
40
41 CBigNum bnProofOfWorkLimitTestNet(~uint256(0) >> 16);
42
43 unsigned int nStakeMinAge = 60 * 60 * 24 * 30; // 30 days as minimum age for coin age
44 unsigned int nStakeMaxAge = 60 * 60 * 24 * 90; // 90 days as stake age of full weight
45 unsigned int nStakeTargetSpacing = 10 * 60; // 10-minute stakes spacing
46 unsigned int nModifierInterval = 6 * 60 * 60; // time to elapse before new modifier is computed
47
48 int nCoinbaseMaturity = 500;
49 CBlockIndex* pindexGenesisBlock = NULL;
50 int nBestHeight = -1;
51 CBigNum bnBestChainTrust = 0;
52 CBigNum bnBestInvalidTrust = 0;
53 uint256 hashBestChain = 0;
54 CBlockIndex* pindexBest = NULL;
55 int64 nTimeBestReceived = 0;
56
57 CMedianFilter<int> cPeerBlockCounts(5, 0); // Amount of blocks that other nodes claim to have
58
59 map<uint256, CBlock*> mapOrphanBlocks;
60 multimap<uint256, CBlock*> mapOrphanBlocksByPrev;
61 set<pair<COutPoint, unsigned int> > setStakeSeenOrphan;
62 map<uint256, uint256> mapProofOfStake;
63
64 map<uint256, CDataStream*> mapOrphanTransactions;
65 map<uint256, map<uint256, CDataStream*> > mapOrphanTransactionsByPrev;
66
67 // Constant stuff for coinbase transactions we create:
68 CScript COINBASE_FLAGS;
69
70 const string strMessageMagic = "NovaCoin Signed Message:\n";
71
72 double dHashesPerSec;
73 int64 nHPSTimerStart;
74
75 // Settings
76 int64 nTransactionFee = MIN_TX_FEE;
77
78
79 //////////////////////////////////////////////////////////////////////////////
80 //
81 // dispatching functions
82 //
83
84 // These functions dispatch to one or all registered wallets
85
86
87 void RegisterWallet(CWallet* pwalletIn)
88 {
89     {
90         LOCK(cs_setpwalletRegistered);
91         setpwalletRegistered.insert(pwalletIn);
92     }
93 }
94
95 void UnregisterWallet(CWallet* pwalletIn)
96 {
97     {
98         LOCK(cs_setpwalletRegistered);
99         setpwalletRegistered.erase(pwalletIn);
100     }
101 }
102
103 // check whether the passed transaction is from us
104 bool static IsFromMe(CTransaction& tx)
105 {
106     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
107         if (pwallet->IsFromMe(tx))
108             return true;
109     return false;
110 }
111
112 // get the wallet transaction with the given hash (if it exists)
113 bool static GetTransaction(const uint256& hashTx, CWalletTx& wtx)
114 {
115     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
116         if (pwallet->GetTransaction(hashTx,wtx))
117             return true;
118     return false;
119 }
120
121 // erases transaction with the given hash from all wallets
122 void static EraseFromWallets(uint256 hash)
123 {
124     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
125         pwallet->EraseFromWallet(hash);
126 }
127
128 // make sure all wallets know about the given transaction, in the given block
129 void SyncWithWallets(const CTransaction& tx, const CBlock* pblock, bool fUpdate, bool fConnect)
130 {
131     if (!fConnect)
132     {
133         // ppcoin: wallets need to refund inputs when disconnecting coinstake
134         if (tx.IsCoinStake())
135         {
136             BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
137                 if (pwallet->IsFromMe(tx))
138                     pwallet->DisableTransaction(tx);
139         }
140         return;
141     }
142
143     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
144         pwallet->AddToWalletIfInvolvingMe(tx, pblock, fUpdate);
145 }
146
147 // notify wallets about a new best chain
148 void static SetBestChain(const CBlockLocator& loc)
149 {
150     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
151         pwallet->SetBestChain(loc);
152 }
153
154 // notify wallets about an updated transaction
155 void static UpdatedTransaction(const uint256& hashTx)
156 {
157     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
158         pwallet->UpdatedTransaction(hashTx);
159 }
160
161 // dump all wallets
162 void static PrintWallets(const CBlock& block)
163 {
164     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
165         pwallet->PrintWallet(block);
166 }
167
168 // notify wallets about an incoming inventory (for request counts)
169 void static Inventory(const uint256& hash)
170 {
171     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
172         pwallet->Inventory(hash);
173 }
174
175 // ask wallets to resend their transactions
176 void ResendWalletTransactions()
177 {
178     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
179         pwallet->ResendWalletTransactions();
180 }
181
182
183
184
185
186
187
188 //////////////////////////////////////////////////////////////////////////////
189 //
190 // mapOrphanTransactions
191 //
192
193 bool AddOrphanTx(const CDataStream& vMsg)
194 {
195     CTransaction tx;
196     CDataStream(vMsg) >> tx;
197     uint256 hash = tx.GetHash();
198     if (mapOrphanTransactions.count(hash))
199         return false;
200
201     CDataStream* pvMsg = new CDataStream(vMsg);
202
203     // Ignore big transactions, to avoid a
204     // send-big-orphans memory exhaustion attack. If a peer has a legitimate
205     // large transaction with a missing parent then we assume
206     // it will rebroadcast it later, after the parent transaction(s)
207     // have been mined or received.
208     // 10,000 orphans, each of which is at most 5,000 bytes big is
209     // at most 500 megabytes of orphans:
210     if (pvMsg->size() > 5000)
211     {
212         printf("ignoring large orphan tx (size: %"PRIszu", hash: %s)\n", pvMsg->size(), hash.ToString().substr(0,10).c_str());
213         delete pvMsg;
214         return false;
215     }
216
217     mapOrphanTransactions[hash] = pvMsg;
218     BOOST_FOREACH(const CTxIn& txin, tx.vin)
219         mapOrphanTransactionsByPrev[txin.prevout.hash].insert(make_pair(hash, pvMsg));
220
221     printf("stored orphan tx %s (mapsz %"PRIszu")\n", hash.ToString().substr(0,10).c_str(),
222         mapOrphanTransactions.size());
223     return true;
224 }
225
226 void static EraseOrphanTx(uint256 hash)
227 {
228     if (!mapOrphanTransactions.count(hash))
229         return;
230     const CDataStream* pvMsg = mapOrphanTransactions[hash];
231     CTransaction tx;
232     CDataStream(*pvMsg) >> tx;
233     BOOST_FOREACH(const CTxIn& txin, tx.vin)
234     {
235         mapOrphanTransactionsByPrev[txin.prevout.hash].erase(hash);
236         if (mapOrphanTransactionsByPrev[txin.prevout.hash].empty())
237             mapOrphanTransactionsByPrev.erase(txin.prevout.hash);
238     }
239     delete pvMsg;
240     mapOrphanTransactions.erase(hash);
241 }
242
243 unsigned int LimitOrphanTxSize(unsigned int nMaxOrphans)
244 {
245     unsigned int nEvicted = 0;
246     while (mapOrphanTransactions.size() > nMaxOrphans)
247     {
248         // Evict a random orphan:
249         uint256 randomhash = GetRandHash();
250         map<uint256, CDataStream*>::iterator it = mapOrphanTransactions.lower_bound(randomhash);
251         if (it == mapOrphanTransactions.end())
252             it = mapOrphanTransactions.begin();
253         EraseOrphanTx(it->first);
254         ++nEvicted;
255     }
256     return nEvicted;
257 }
258
259
260
261
262
263
264
265 //////////////////////////////////////////////////////////////////////////////
266 //
267 // CTransaction and CTxIndex
268 //
269
270 bool CTransaction::ReadFromDisk(CTxDB& txdb, COutPoint prevout, CTxIndex& txindexRet)
271 {
272     SetNull();
273     if (!txdb.ReadTxIndex(prevout.hash, txindexRet))
274         return false;
275     if (!ReadFromDisk(txindexRet.pos))
276         return false;
277     if (prevout.n >= vout.size())
278     {
279         SetNull();
280         return false;
281     }
282     return true;
283 }
284
285 bool CTransaction::ReadFromDisk(CTxDB& txdb, COutPoint prevout)
286 {
287     CTxIndex txindex;
288     return ReadFromDisk(txdb, prevout, txindex);
289 }
290
291 bool CTransaction::ReadFromDisk(COutPoint prevout)
292 {
293     CTxDB txdb("r");
294     CTxIndex txindex;
295     return ReadFromDisk(txdb, prevout, txindex);
296 }
297
298 bool CTransaction::IsStandard() const
299 {
300     if (nVersion > CTransaction::CURRENT_VERSION)
301         return false;
302
303     BOOST_FOREACH(const CTxIn& txin, vin)
304     {
305         // Biggest 'standard' txin is a 3-signature 3-of-3 CHECKMULTISIG
306         // pay-to-script-hash, which is 3 ~80-byte signatures, 3
307         // ~65-byte public keys, plus a few script ops.
308         if (txin.scriptSig.size() > 500)
309             return false;
310         if (!txin.scriptSig.IsPushOnly())
311             return false;
312     }
313     BOOST_FOREACH(const CTxOut& txout, vout) {
314         if (!::IsStandard(txout.scriptPubKey))
315             return false;
316         if (txout.nValue == 0)
317             return false;
318     }
319     return true;
320 }
321
322 //
323 // Check transaction inputs, and make sure any
324 // pay-to-script-hash transactions are evaluating IsStandard scripts
325 //
326 // Why bother? To avoid denial-of-service attacks; an attacker
327 // can submit a standard HASH... OP_EQUAL transaction,
328 // which will get accepted into blocks. The redemption
329 // script can be anything; an attacker could use a very
330 // expensive-to-check-upon-redemption script like:
331 //   DUP CHECKSIG DROP ... repeated 100 times... OP_1
332 //
333 bool CTransaction::AreInputsStandard(const MapPrevTx& mapInputs) const
334 {
335     if (IsCoinBase())
336         return true; // Coinbases don't use vin normally
337
338     for (unsigned int i = 0; i < vin.size(); i++)
339     {
340         const CTxOut& prev = GetOutputFor(vin[i], mapInputs);
341
342         vector<vector<unsigned char> > vSolutions;
343         txnouttype whichType;
344         // get the scriptPubKey corresponding to this input:
345         const CScript& prevScript = prev.scriptPubKey;
346         if (!Solver(prevScript, whichType, vSolutions))
347             return false;
348         int nArgsExpected = ScriptSigArgsExpected(whichType, vSolutions);
349         if (nArgsExpected < 0)
350             return false;
351
352         // Transactions with extra stuff in their scriptSigs are
353         // non-standard. Note that this EvalScript() call will
354         // be quick, because if there are any operations
355         // beside "push data" in the scriptSig the
356         // IsStandard() call returns false
357         vector<vector<unsigned char> > stack;
358         if (!EvalScript(stack, vin[i].scriptSig, *this, i, 0))
359             return false;
360
361         if (whichType == TX_SCRIPTHASH)
362         {
363             if (stack.empty())
364                 return false;
365             CScript subscript(stack.back().begin(), stack.back().end());
366             vector<vector<unsigned char> > vSolutions2;
367             txnouttype whichType2;
368             if (!Solver(subscript, whichType2, vSolutions2))
369                 return false;
370             if (whichType2 == TX_SCRIPTHASH)
371                 return false;
372
373             int tmpExpected;
374             tmpExpected = ScriptSigArgsExpected(whichType2, vSolutions2);
375             if (tmpExpected < 0)
376                 return false;
377             nArgsExpected += tmpExpected;
378         }
379
380         if (stack.size() != (unsigned int)nArgsExpected)
381             return false;
382     }
383
384     return true;
385 }
386
387 unsigned int
388 CTransaction::GetLegacySigOpCount() const
389 {
390     unsigned int nSigOps = 0;
391     BOOST_FOREACH(const CTxIn& txin, vin)
392     {
393         nSigOps += txin.scriptSig.GetSigOpCount(false);
394     }
395     BOOST_FOREACH(const CTxOut& txout, vout)
396     {
397         nSigOps += txout.scriptPubKey.GetSigOpCount(false);
398     }
399     return nSigOps;
400 }
401
402
403 int CMerkleTx::SetMerkleBranch(const CBlock* pblock)
404 {
405     if (fClient)
406     {
407         if (hashBlock == 0)
408             return 0;
409     }
410     else
411     {
412         CBlock blockTmp;
413         if (pblock == NULL)
414         {
415             // Load the block this tx is in
416             CTxIndex txindex;
417             if (!CTxDB("r").ReadTxIndex(GetHash(), txindex))
418                 return 0;
419             if (!blockTmp.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos))
420                 return 0;
421             pblock = &blockTmp;
422         }
423
424         // Update the tx's hashBlock
425         hashBlock = pblock->GetHash();
426
427         // Locate the transaction
428         for (nIndex = 0; nIndex < (int)pblock->vtx.size(); nIndex++)
429             if (pblock->vtx[nIndex] == *(CTransaction*)this)
430                 break;
431         if (nIndex == (int)pblock->vtx.size())
432         {
433             vMerkleBranch.clear();
434             nIndex = -1;
435             printf("ERROR: SetMerkleBranch() : couldn't find tx in block\n");
436             return 0;
437         }
438
439         // Fill in merkle branch
440         vMerkleBranch = pblock->GetMerkleBranch(nIndex);
441     }
442
443     // Is the tx in a block that's in the main chain
444     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock);
445     if (mi == mapBlockIndex.end())
446         return 0;
447     CBlockIndex* pindex = (*mi).second;
448     if (!pindex || !pindex->IsInMainChain())
449         return 0;
450
451     return pindexBest->nHeight - pindex->nHeight + 1;
452 }
453
454
455
456
457
458
459
460 bool CTransaction::CheckTransaction() const
461 {
462     // Basic checks that don't depend on any context
463     if (vin.empty())
464         return DoS(10, error("CTransaction::CheckTransaction() : vin empty"));
465     if (vout.empty())
466         return DoS(10, error("CTransaction::CheckTransaction() : vout empty"));
467     // Size limits
468     if (::GetSerializeSize(*this, SER_NETWORK, PROTOCOL_VERSION) > MAX_BLOCK_SIZE)
469         return DoS(100, error("CTransaction::CheckTransaction() : size limits failed"));
470
471     // Check for negative or overflow output values
472     int64 nValueOut = 0;
473     for (unsigned int i = 0; i < vout.size(); i++)
474     {
475         const CTxOut& txout = vout[i];
476         if (txout.IsEmpty() && !IsCoinBase() && !IsCoinStake())
477             return DoS(100, error("CTransaction::CheckTransaction() : txout empty for user transaction"));
478
479         // ppcoin: enforce minimum output amount
480         if ((!txout.IsEmpty()) && txout.nValue < MIN_TXOUT_AMOUNT)
481             return DoS(100, error("CTransaction::CheckTransaction() : txout.nValue below minimum"));
482
483         if (txout.nValue > MAX_MONEY)
484             return DoS(100, error("CTransaction::CheckTransaction() : txout.nValue too high"));
485         nValueOut += txout.nValue;
486         if (!MoneyRange(nValueOut))
487             return DoS(100, error("CTransaction::CheckTransaction() : txout total out of range"));
488     }
489
490     // Check for duplicate inputs
491     set<COutPoint> vInOutPoints;
492     BOOST_FOREACH(const CTxIn& txin, vin)
493     {
494         if (vInOutPoints.count(txin.prevout))
495             return false;
496         vInOutPoints.insert(txin.prevout);
497     }
498
499     if (IsCoinBase())
500     {
501         if (vin[0].scriptSig.size() < 2 || vin[0].scriptSig.size() > 100)
502             return DoS(100, error("CTransaction::CheckTransaction() : coinbase script size"));
503     }
504     else
505     {
506         BOOST_FOREACH(const CTxIn& txin, vin)
507             if (txin.prevout.IsNull())
508                 return DoS(10, error("CTransaction::CheckTransaction() : prevout is null"));
509     }
510
511     return true;
512 }
513
514 int64 CTransaction::GetMinFee(unsigned int nBlockSize, bool fAllowFree,
515                               enum GetMinFee_mode mode) const
516 {
517     // Base fee is either MIN_TX_FEE or MIN_RELAY_TX_FEE
518     int64 nBaseFee = (mode == GMF_RELAY) ? MIN_RELAY_TX_FEE : MIN_TX_FEE;
519
520     unsigned int nBytes = ::GetSerializeSize(*this, SER_NETWORK, PROTOCOL_VERSION);
521     unsigned int nNewBlockSize = nBlockSize + nBytes;
522     int64 nMinFee = (1 + (int64)nBytes / 1000) * nBaseFee;
523
524     // To limit dust spam, require MIN_TX_FEE/MIN_RELAY_TX_FEE if any output is less than 0.01
525     if (nMinFee < nBaseFee)
526     {
527         BOOST_FOREACH(const CTxOut& txout, vout)
528             if (txout.nValue < CENT)
529                 nMinFee = nBaseFee;
530     }
531
532     // Raise the price as the block approaches full
533     if (nBlockSize != 1 && nNewBlockSize >= MAX_BLOCK_SIZE_GEN/2)
534     {
535         if (nNewBlockSize >= MAX_BLOCK_SIZE_GEN)
536             return MAX_MONEY;
537         nMinFee *= MAX_BLOCK_SIZE_GEN / (MAX_BLOCK_SIZE_GEN - nNewBlockSize);
538     }
539
540     if (!MoneyRange(nMinFee))
541         nMinFee = MAX_MONEY;
542     return nMinFee;
543 }
544
545
546 bool CTxMemPool::accept(CTxDB& txdb, CTransaction &tx, bool fCheckInputs,
547                         bool* pfMissingInputs)
548 {
549     if (pfMissingInputs)
550         *pfMissingInputs = false;
551
552     if (!tx.CheckTransaction())
553         return error("CTxMemPool::accept() : CheckTransaction failed");
554
555     // Coinbase is only valid in a block, not as a loose transaction
556     if (tx.IsCoinBase())
557         return tx.DoS(100, error("CTxMemPool::accept() : coinbase as individual tx"));
558
559     // ppcoin: coinstake is also only valid in a block, not as a loose transaction
560     if (tx.IsCoinStake())
561         return tx.DoS(100, error("CTxMemPool::accept() : coinstake as individual tx"));
562
563     // To help v0.1.5 clients who would see it as a negative number
564     if ((int64)tx.nLockTime > std::numeric_limits<int>::max())
565         return error("CTxMemPool::accept() : not accepting nLockTime beyond 2038 yet");
566
567     // Rather not work on nonstandard transactions (unless -testnet)
568     if (!fTestNet && !tx.IsStandard())
569         return error("CTxMemPool::accept() : nonstandard transaction type");
570
571     // Do we already have it?
572     uint256 hash = tx.GetHash();
573     {
574         LOCK(cs);
575         if (mapTx.count(hash))
576             return false;
577     }
578     if (fCheckInputs)
579         if (txdb.ContainsTx(hash))
580             return false;
581
582     // Check for conflicts with in-memory transactions
583     CTransaction* ptxOld = NULL;
584     for (unsigned int i = 0; i < tx.vin.size(); i++)
585     {
586         COutPoint outpoint = tx.vin[i].prevout;
587         if (mapNextTx.count(outpoint))
588         {
589             // Disable replacement feature for now
590             return false;
591
592             // Allow replacing with a newer version of the same transaction
593             if (i != 0)
594                 return false;
595             ptxOld = mapNextTx[outpoint].ptx;
596             if (ptxOld->IsFinal())
597                 return false;
598             if (!tx.IsNewerThan(*ptxOld))
599                 return false;
600             for (unsigned int i = 0; i < tx.vin.size(); i++)
601             {
602                 COutPoint outpoint = tx.vin[i].prevout;
603                 if (!mapNextTx.count(outpoint) || mapNextTx[outpoint].ptx != ptxOld)
604                     return false;
605             }
606             break;
607         }
608     }
609
610     if (fCheckInputs)
611     {
612         MapPrevTx mapInputs;
613         map<uint256, CTxIndex> mapUnused;
614         bool fInvalid = false;
615         if (!tx.FetchInputs(txdb, mapUnused, false, false, mapInputs, fInvalid))
616         {
617             if (fInvalid)
618                 return error("CTxMemPool::accept() : FetchInputs found invalid tx %s", hash.ToString().substr(0,10).c_str());
619             if (pfMissingInputs)
620                 *pfMissingInputs = true;
621             return false;
622         }
623
624         // Check for non-standard pay-to-script-hash in inputs
625         if (!tx.AreInputsStandard(mapInputs) && !fTestNet)
626             return error("CTxMemPool::accept() : nonstandard transaction input");
627
628         // Note: if you modify this code to accept non-standard transactions, then
629         // you should add code here to check that the transaction does a
630         // reasonable number of ECDSA signature verifications.
631
632         int64 nFees = tx.GetValueIn(mapInputs)-tx.GetValueOut();
633         unsigned int nSize = ::GetSerializeSize(tx, SER_NETWORK, PROTOCOL_VERSION);
634
635         // Don't accept it if it can't get into a block
636         int64 txMinFee = tx.GetMinFee(1000, false, GMF_RELAY);
637         if (nFees < txMinFee)
638             return error("CTxMemPool::accept() : not enough fees %s, %"PRI64d" < %"PRI64d,
639                          hash.ToString().c_str(),
640                          nFees, txMinFee);
641
642         // Continuously rate-limit free transactions
643         // This mitigates 'penny-flooding' -- sending thousands of free transactions just to
644         // be annoying or make others' transactions take longer to confirm.
645         if (nFees < MIN_RELAY_TX_FEE)
646         {
647             static CCriticalSection cs;
648             static double dFreeCount;
649             static int64 nLastTime;
650             int64 nNow = GetTime();
651
652             {
653                 LOCK(cs);
654                 // Use an exponentially decaying ~10-minute window:
655                 dFreeCount *= pow(1.0 - 1.0/600.0, (double)(nNow - nLastTime));
656                 nLastTime = nNow;
657                 // -limitfreerelay unit is thousand-bytes-per-minute
658                 // At default rate it would take over a month to fill 1GB
659                 if (dFreeCount > GetArg("-limitfreerelay", 15)*10*1000 && !IsFromMe(tx))
660                     return error("CTxMemPool::accept() : free transaction rejected by rate limiter");
661                 if (fDebug)
662                     printf("Rate limit dFreeCount: %g => %g\n", dFreeCount, dFreeCount+nSize);
663                 dFreeCount += nSize;
664             }
665         }
666
667         // Check against previous transactions
668         // This is done last to help prevent CPU exhaustion denial-of-service attacks.
669         if (!tx.ConnectInputs(txdb, mapInputs, mapUnused, CDiskTxPos(1,1,1), pindexBest, false, false))
670         {
671             return error("CTxMemPool::accept() : ConnectInputs failed %s", hash.ToString().substr(0,10).c_str());
672         }
673     }
674
675     // Store transaction in memory
676     {
677         LOCK(cs);
678         if (ptxOld)
679         {
680             printf("CTxMemPool::accept() : replacing tx %s with new version\n", ptxOld->GetHash().ToString().c_str());
681             remove(*ptxOld);
682         }
683         addUnchecked(hash, tx);
684     }
685
686     ///// are we sure this is ok when loading transactions or restoring block txes
687     // If updated, erase old tx from wallet
688     if (ptxOld)
689         EraseFromWallets(ptxOld->GetHash());
690
691     printf("CTxMemPool::accept() : accepted %s (poolsz %"PRIszu")\n",
692            hash.ToString().substr(0,10).c_str(),
693            mapTx.size());
694     return true;
695 }
696
697 bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMissingInputs)
698 {
699     return mempool.accept(txdb, *this, fCheckInputs, pfMissingInputs);
700 }
701
702 bool CTxMemPool::addUnchecked(const uint256& hash, CTransaction &tx)
703 {
704     // Add to memory pool without checking anything.  Don't call this directly,
705     // call CTxMemPool::accept to properly check the transaction first.
706     {
707         mapTx[hash] = tx;
708         for (unsigned int i = 0; i < tx.vin.size(); i++)
709             mapNextTx[tx.vin[i].prevout] = CInPoint(&mapTx[hash], i);
710         nTransactionsUpdated++;
711     }
712     return true;
713 }
714
715
716 bool CTxMemPool::remove(CTransaction &tx)
717 {
718     // Remove transaction from memory pool
719     {
720         LOCK(cs);
721         uint256 hash = tx.GetHash();
722         if (mapTx.count(hash))
723         {
724             BOOST_FOREACH(const CTxIn& txin, tx.vin)
725                 mapNextTx.erase(txin.prevout);
726             mapTx.erase(hash);
727             nTransactionsUpdated++;
728         }
729     }
730     return true;
731 }
732
733 void CTxMemPool::clear()
734 {
735     LOCK(cs);
736     mapTx.clear();
737     mapNextTx.clear();
738     ++nTransactionsUpdated;
739 }
740
741 void CTxMemPool::queryHashes(std::vector<uint256>& vtxid)
742 {
743     vtxid.clear();
744
745     LOCK(cs);
746     vtxid.reserve(mapTx.size());
747     for (map<uint256, CTransaction>::iterator mi = mapTx.begin(); mi != mapTx.end(); ++mi)
748         vtxid.push_back((*mi).first);
749 }
750
751
752
753
754 int CMerkleTx::GetDepthInMainChain(CBlockIndex* &pindexRet) const
755 {
756     if (hashBlock == 0 || nIndex == -1)
757         return 0;
758
759     // Find the block it claims to be in
760     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock);
761     if (mi == mapBlockIndex.end())
762         return 0;
763     CBlockIndex* pindex = (*mi).second;
764     if (!pindex || !pindex->IsInMainChain())
765         return 0;
766
767     // Make sure the merkle branch connects to this block
768     if (!fMerkleVerified)
769     {
770         if (CBlock::CheckMerkleBranch(GetHash(), vMerkleBranch, nIndex) != pindex->hashMerkleRoot)
771             return 0;
772         fMerkleVerified = true;
773     }
774
775     pindexRet = pindex;
776     return pindexBest->nHeight - pindex->nHeight + 1;
777 }
778
779
780 int CMerkleTx::GetBlocksToMaturity() const
781 {
782     if (!(IsCoinBase() || IsCoinStake()))
783         return 0;
784     return max(0, (nCoinbaseMaturity+20) - GetDepthInMainChain());
785 }
786
787
788 bool CMerkleTx::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs)
789 {
790     if (fClient)
791     {
792         if (!IsInMainChain() && !ClientConnectInputs())
793             return false;
794         return CTransaction::AcceptToMemoryPool(txdb, false);
795     }
796     else
797     {
798         return CTransaction::AcceptToMemoryPool(txdb, fCheckInputs);
799     }
800 }
801
802 bool CMerkleTx::AcceptToMemoryPool()
803 {
804     CTxDB txdb("r");
805     return AcceptToMemoryPool(txdb);
806 }
807
808
809
810 bool CWalletTx::AcceptWalletTransaction(CTxDB& txdb, bool fCheckInputs)
811 {
812
813     {
814         LOCK(mempool.cs);
815         // Add previous supporting transactions first
816         BOOST_FOREACH(CMerkleTx& tx, vtxPrev)
817         {
818             if (!(tx.IsCoinBase() || tx.IsCoinStake()))
819             {
820                 uint256 hash = tx.GetHash();
821                 if (!mempool.exists(hash) && !txdb.ContainsTx(hash))
822                     tx.AcceptToMemoryPool(txdb, fCheckInputs);
823             }
824         }
825         return AcceptToMemoryPool(txdb, fCheckInputs);
826     }
827     return false;
828 }
829
830 bool CWalletTx::AcceptWalletTransaction()
831 {
832     CTxDB txdb("r");
833     return AcceptWalletTransaction(txdb);
834 }
835
836 int CTxIndex::GetDepthInMainChain() const
837 {
838     // Read block header
839     CBlock block;
840     if (!block.ReadFromDisk(pos.nFile, pos.nBlockPos, false))
841         return 0;
842     // Find the block in the index
843     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(block.GetHash());
844     if (mi == mapBlockIndex.end())
845         return 0;
846     CBlockIndex* pindex = (*mi).second;
847     if (!pindex || !pindex->IsInMainChain())
848         return 0;
849     return 1 + nBestHeight - pindex->nHeight;
850 }
851
852 // Return transaction in tx, and if it was found inside a block, its hash is placed in hashBlock
853 bool GetTransaction(const uint256 &hash, CTransaction &tx, uint256 &hashBlock)
854 {
855     {
856         LOCK(cs_main);
857         {
858             LOCK(mempool.cs);
859             if (mempool.exists(hash))
860             {
861                 tx = mempool.lookup(hash);
862                 return true;
863             }
864         }
865         CTxDB txdb("r");
866         CTxIndex txindex;
867         if (tx.ReadFromDisk(txdb, COutPoint(hash, 0), txindex))
868         {
869             CBlock block;
870             if (block.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos, false))
871                 hashBlock = block.GetHash();
872             return true;
873         }
874     }
875     return false;
876 }
877
878
879
880
881
882
883
884
885 //////////////////////////////////////////////////////////////////////////////
886 //
887 // CBlock and CBlockIndex
888 //
889
890 static CBlockIndex* pblockindexFBBHLast;
891 CBlockIndex* FindBlockByHeight(int nHeight)
892 {
893     CBlockIndex *pblockindex;
894     if (nHeight < nBestHeight / 2)
895         pblockindex = pindexGenesisBlock;
896     else
897         pblockindex = pindexBest;
898     if (pblockindexFBBHLast && abs(nHeight - pblockindex->nHeight) > abs(nHeight - pblockindexFBBHLast->nHeight))
899         pblockindex = pblockindexFBBHLast;
900     while (pblockindex->nHeight > nHeight)
901         pblockindex = pblockindex->pprev;
902     while (pblockindex->nHeight < nHeight)
903         pblockindex = pblockindex->pnext;
904     pblockindexFBBHLast = pblockindex;
905     return pblockindex;
906 }
907
908 bool CBlock::ReadFromDisk(const CBlockIndex* pindex, bool fReadTransactions)
909 {
910     if (!fReadTransactions)
911     {
912         *this = pindex->GetBlockHeader();
913         return true;
914     }
915     if (!ReadFromDisk(pindex->nFile, pindex->nBlockPos, fReadTransactions))
916         return false;
917     if (GetHash() != pindex->GetBlockHash())
918         return error("CBlock::ReadFromDisk() : GetHash() doesn't match index");
919     return true;
920 }
921
922 uint256 static GetOrphanRoot(const CBlock* pblock)
923 {
924     // Work back to the first block in the orphan chain
925     while (mapOrphanBlocks.count(pblock->hashPrevBlock))
926         pblock = mapOrphanBlocks[pblock->hashPrevBlock];
927     return pblock->GetHash();
928 }
929
930 // ppcoin: find block wanted by given orphan block
931 uint256 WantedByOrphan(const CBlock* pblockOrphan)
932 {
933     // Work back to the first block in the orphan chain
934     while (mapOrphanBlocks.count(pblockOrphan->hashPrevBlock))
935         pblockOrphan = mapOrphanBlocks[pblockOrphan->hashPrevBlock];
936     return pblockOrphan->hashPrevBlock;
937 }
938
939 // select stake target limit according to hard-coded conditions
940 CBigNum static GetProofOfStakeLimit(int nHeight, unsigned int nTime)
941 {
942     if(fTestNet) // separate proof of stake target limit for testnet
943         return bnProofOfStakeLimit;
944     if(nTime > TARGETS_SWITCH_TIME) // 27 bits since 20 July 2013
945         return bnProofOfStakeLimit;
946     if(nHeight + 1 > 15000) // 24 bits since block 15000
947         return bnProofOfStakeLegacyLimit;
948     if(nHeight + 1 > 14060) // 31 bits since block 14060 until 15000
949         return bnProofOfStakeHardLimit;
950
951     return bnProofOfWorkLimit; // return bnProofOfWorkLimit of none matched
952 }
953
954 // miner's coin base reward based on nBits
955 int64 GetProofOfWorkReward(unsigned int nBits)
956 {
957     CBigNum bnSubsidyLimit = MAX_MINT_PROOF_OF_WORK;
958
959     CBigNum bnTarget;
960     bnTarget.SetCompact(nBits);
961     CBigNum bnTargetLimit = bnProofOfWorkLimit;
962     bnTargetLimit.SetCompact(bnTargetLimit.GetCompact());
963
964     // NovaCoin: subsidy is cut in half every 64x multiply of PoW difficulty
965     // A reasonably continuous curve is used to avoid shock to market
966     // (nSubsidyLimit / nSubsidy) ** 6 == bnProofOfWorkLimit / bnTarget
967     //
968     // Human readable form:
969     //
970     // nSubsidy = 100 / (diff ^ 1/6)
971     CBigNum bnLowerBound = CENT;
972     CBigNum bnUpperBound = bnSubsidyLimit;
973     while (bnLowerBound + CENT <= bnUpperBound)
974     {
975         CBigNum bnMidValue = (bnLowerBound + bnUpperBound) / 2;
976         if (fDebug && GetBoolArg("-printcreation"))
977             printf("GetProofOfWorkReward() : lower=%"PRI64d" upper=%"PRI64d" mid=%"PRI64d"\n", bnLowerBound.getuint64(), bnUpperBound.getuint64(), bnMidValue.getuint64());
978         if (bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnTargetLimit > bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnTarget)
979             bnUpperBound = bnMidValue;
980         else
981             bnLowerBound = bnMidValue;
982     }
983
984     int64 nSubsidy = bnUpperBound.getuint64();
985     nSubsidy = (nSubsidy / CENT) * CENT;
986     if (fDebug && GetBoolArg("-printcreation"))
987         printf("GetProofOfWorkReward() : create=%s nBits=0x%08x nSubsidy=%"PRI64d"\n", FormatMoney(nSubsidy).c_str(), nBits, nSubsidy);
988
989     return min(nSubsidy, MAX_MINT_PROOF_OF_WORK);
990 }
991
992 // miner's coin stake reward based on nBits and coin age spent (coin-days)
993 int64 GetProofOfStakeReward(int64 nCoinAge, unsigned int nBits, unsigned int nTime)
994 {
995     int64 nRewardCoinYear;
996
997     if(fTestNet || nTime > STAKE_SWITCH_TIME)
998     {
999         // Stage 2 of emission process is PoS-based. It will be active on mainNet since 20 Jun 2013.
1000
1001         CBigNum bnRewardCoinYearLimit = MAX_MINT_PROOF_OF_STAKE; // Base stake mint rate, 100% year interest
1002         CBigNum bnTarget;
1003         bnTarget.SetCompact(nBits);
1004         CBigNum bnTargetLimit = GetProofOfStakeLimit(0, nTime);
1005         bnTargetLimit.SetCompact(bnTargetLimit.GetCompact());
1006
1007         // NovaCoin: reward for coin-year is cut in half every 64x multiply of PoS difficulty
1008         // A reasonably continuous curve is used to avoid shock to market
1009         // (nRewardCoinYearLimit / nRewardCoinYear) ** 6 == bnProofOfStakeLimit / bnTarget
1010         //
1011         // Human readable form:
1012         //
1013         // nRewardCoinYear = 1 / (posdiff ^ 1/6)
1014
1015         CBigNum bnLowerBound = 1 * CENT; // Lower interest bound is 1% per year
1016         CBigNum bnUpperBound = bnRewardCoinYearLimit;
1017         while (bnLowerBound + CENT <= bnUpperBound)
1018         {
1019             CBigNum bnMidValue = (bnLowerBound + bnUpperBound) / 2;
1020             if (fDebug && GetBoolArg("-printcreation"))
1021                 printf("GetProofOfStakeReward() : lower=%"PRI64d" upper=%"PRI64d" mid=%"PRI64d"\n", bnLowerBound.getuint64(), bnUpperBound.getuint64(), bnMidValue.getuint64());
1022             if (bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnTargetLimit > bnRewardCoinYearLimit * bnRewardCoinYearLimit * bnRewardCoinYearLimit * bnRewardCoinYearLimit * bnRewardCoinYearLimit * bnRewardCoinYearLimit * bnTarget)
1023                 bnUpperBound = bnMidValue;
1024             else
1025                 bnLowerBound = bnMidValue;
1026         }
1027
1028         nRewardCoinYear = bnUpperBound.getuint64();
1029         nRewardCoinYear = min((nRewardCoinYear / CENT) * CENT, MAX_MINT_PROOF_OF_STAKE);
1030     }
1031     else
1032     {
1033         // Old creation amount per coin-year, 5% fixed stake mint rate
1034         nRewardCoinYear = 5 * CENT;
1035     }
1036
1037     int64 nSubsidy = nCoinAge * 33 / (365 * 33 + 8) * nRewardCoinYear;
1038     if (fDebug && GetBoolArg("-printcreation"))
1039         printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d" nBits=%d\n", FormatMoney(nSubsidy).c_str(), nCoinAge, nBits);
1040     return nSubsidy;
1041 }
1042
1043 static const int64 nTargetTimespan = 7 * 24 * 60 * 60;  // one week
1044
1045 // get proof of work blocks max spacing according to hard-coded conditions
1046 int64 static GetTargetSpacingWorkMax(int nHeight, unsigned int nTime)
1047 {
1048     if(nTime > TARGETS_SWITCH_TIME)
1049         return 3 * nStakeTargetSpacing; // 30 minutes on mainNet since 20 Jul 2013 00:00:00
1050
1051     if(fTestNet)
1052         return 3 * nStakeTargetSpacing; // 15 minutes on testNet
1053
1054     return 12 * nStakeTargetSpacing; // 2 hours otherwise
1055 }
1056
1057 //
1058 // minimum amount of work that could possibly be required nTime after
1059 // minimum work required was nBase
1060 //
1061 unsigned int ComputeMinWork(unsigned int nBase, int64 nTime)
1062 {
1063     CBigNum bnTargetLimit = bnProofOfWorkLimit;
1064
1065     CBigNum bnResult;
1066     bnResult.SetCompact(nBase);
1067     bnResult *= 2;
1068     while (nTime > 0 && bnResult < bnTargetLimit)
1069     {
1070         // Maximum 200% adjustment per day...
1071         bnResult *= 2;
1072         nTime -= 24 * 60 * 60;
1073     }
1074     if (bnResult > bnTargetLimit)
1075         bnResult = bnTargetLimit;
1076     return bnResult.GetCompact();
1077 }
1078
1079 // ppcoin: find last block index up to pindex
1080 const CBlockIndex* GetLastBlockIndex(const CBlockIndex* pindex, bool fProofOfStake)
1081 {
1082     while (pindex && pindex->pprev && (pindex->IsProofOfStake() != fProofOfStake))
1083         pindex = pindex->pprev;
1084     return pindex;
1085 }
1086
1087 unsigned int GetNextTargetRequired(const CBlockIndex* pindexLast, bool fProofOfStake)
1088 {
1089     CBigNum bnTargetLimit = !fProofOfStake ? bnProofOfWorkLimit : GetProofOfStakeLimit(pindexLast->nHeight, pindexLast->nTime);
1090
1091     if (pindexLast == NULL)
1092         return bnTargetLimit.GetCompact(); // genesis block
1093
1094     const CBlockIndex* pindexPrev = GetLastBlockIndex(pindexLast, fProofOfStake);
1095     if (pindexPrev->pprev == NULL)
1096         return bnTargetLimit.GetCompact(); // first block
1097     const CBlockIndex* pindexPrevPrev = GetLastBlockIndex(pindexPrev->pprev, fProofOfStake);
1098     if (pindexPrevPrev->pprev == NULL)
1099         return bnTargetLimit.GetCompact(); // second block
1100
1101     int64 nActualSpacing = pindexPrev->GetBlockTime() - pindexPrevPrev->GetBlockTime();
1102
1103     // ppcoin: target change every block
1104     // ppcoin: retarget with exponential moving toward target spacing
1105     CBigNum bnNew;
1106     bnNew.SetCompact(pindexPrev->nBits);
1107     int64 nTargetSpacing = fProofOfStake? nStakeTargetSpacing : min(GetTargetSpacingWorkMax(pindexLast->nHeight, pindexLast->nTime), (int64) nStakeTargetSpacing * (1 + pindexLast->nHeight - pindexPrev->nHeight));
1108     int64 nInterval = nTargetTimespan / nTargetSpacing;
1109     bnNew *= ((nInterval - 1) * nTargetSpacing + nActualSpacing + nActualSpacing);
1110     bnNew /= ((nInterval + 1) * nTargetSpacing);
1111
1112     if (bnNew > bnTargetLimit)
1113         bnNew = bnTargetLimit;
1114
1115     return bnNew.GetCompact();
1116 }
1117
1118 bool CheckProofOfWork(uint256 hash, unsigned int nBits)
1119 {
1120     CBigNum bnTarget;
1121     bnTarget.SetCompact(nBits);
1122
1123     // Check range
1124     if (bnTarget <= 0 || bnTarget > bnProofOfWorkLimit)
1125         return error("CheckProofOfWork() : nBits below minimum work");
1126
1127     // Check proof of work matches claimed amount
1128     if (hash > bnTarget.getuint256())
1129         return error("CheckProofOfWork() : hash doesn't match nBits");
1130
1131     return true;
1132 }
1133
1134 // Return maximum amount of blocks that other nodes claim to have
1135 int GetNumBlocksOfPeers()
1136 {
1137     return std::max(cPeerBlockCounts.median(), Checkpoints::GetTotalBlocksEstimate());
1138 }
1139
1140 bool IsInitialBlockDownload()
1141 {
1142     if (pindexBest == NULL || nBestHeight < Checkpoints::GetTotalBlocksEstimate())
1143         return true;
1144     static int64 nLastUpdate;
1145     static CBlockIndex* pindexLastBest;
1146     if (pindexBest != pindexLastBest)
1147     {
1148         pindexLastBest = pindexBest;
1149         nLastUpdate = GetTime();
1150     }
1151     return (GetTime() - nLastUpdate < 10 &&
1152             pindexBest->GetBlockTime() < GetTime() - 24 * 60 * 60);
1153 }
1154
1155 void static InvalidChainFound(CBlockIndex* pindexNew)
1156 {
1157     if (pindexNew->bnChainTrust > bnBestInvalidTrust)
1158     {
1159         bnBestInvalidTrust = pindexNew->bnChainTrust;
1160         CTxDB().WriteBestInvalidTrust(bnBestInvalidTrust);
1161         uiInterface.NotifyBlocksChanged();
1162     }
1163
1164     CBigNum bnBestInvalidBlockTrust = pindexNew->bnChainTrust - pindexNew->pprev->bnChainTrust;
1165     CBigNum bnBestBlockTrust = pindexBest->nHeight != 0 ? (pindexBest->bnChainTrust - pindexBest->pprev->bnChainTrust) : pindexBest->bnChainTrust;
1166
1167     printf("InvalidChainFound: invalid block=%s  height=%d  trust=%s  blocktrust=%s  date=%s\n",
1168       pindexNew->GetBlockHash().ToString().substr(0,20).c_str(), pindexNew->nHeight,
1169       pindexNew->bnChainTrust.ToString().c_str(), bnBestInvalidBlockTrust.ToString().c_str(),
1170       DateTimeStrFormat("%x %H:%M:%S", pindexNew->GetBlockTime()).c_str());
1171     printf("InvalidChainFound:  current best=%s  height=%d  trust=%s  blocktrust=%s  date=%s\n",
1172       hashBestChain.ToString().substr(0,20).c_str(), nBestHeight, 
1173       bnBestChainTrust.ToString().c_str(),
1174       bnBestBlockTrust.ToString().c_str(),
1175       DateTimeStrFormat("%x %H:%M:%S", pindexBest->GetBlockTime()).c_str());
1176 }
1177
1178
1179 void CBlock::UpdateTime(const CBlockIndex* pindexPrev)
1180 {
1181     nTime = max(GetBlockTime(), GetAdjustedTime());
1182 }
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194 bool CTransaction::DisconnectInputs(CTxDB& txdb)
1195 {
1196     // Relinquish previous transactions' spent pointers
1197     if (!IsCoinBase())
1198     {
1199         BOOST_FOREACH(const CTxIn& txin, vin)
1200         {
1201             COutPoint prevout = txin.prevout;
1202
1203             // Get prev txindex from disk
1204             CTxIndex txindex;
1205             if (!txdb.ReadTxIndex(prevout.hash, txindex))
1206                 return error("DisconnectInputs() : ReadTxIndex failed");
1207
1208             if (prevout.n >= txindex.vSpent.size())
1209                 return error("DisconnectInputs() : prevout.n out of range");
1210
1211             // Mark outpoint as not spent
1212             txindex.vSpent[prevout.n].SetNull();
1213
1214             // Write back
1215             if (!txdb.UpdateTxIndex(prevout.hash, txindex))
1216                 return error("DisconnectInputs() : UpdateTxIndex failed");
1217         }
1218     }
1219
1220     // Remove transaction from index
1221     // This can fail if a duplicate of this transaction was in a chain that got
1222     // reorganized away. This is only possible if this transaction was completely
1223     // spent, so erasing it would be a no-op anyway.
1224     txdb.EraseTxIndex(*this);
1225
1226     return true;
1227 }
1228
1229
1230 bool CTransaction::FetchInputs(CTxDB& txdb, const map<uint256, CTxIndex>& mapTestPool,
1231                                bool fBlock, bool fMiner, MapPrevTx& inputsRet, bool& fInvalid)
1232 {
1233     // FetchInputs can return false either because we just haven't seen some inputs
1234     // (in which case the transaction should be stored as an orphan)
1235     // or because the transaction is malformed (in which case the transaction should
1236     // be dropped).  If tx is definitely invalid, fInvalid will be set to true.
1237     fInvalid = false;
1238
1239     if (IsCoinBase())
1240         return true; // Coinbase transactions have no inputs to fetch.
1241
1242     for (unsigned int i = 0; i < vin.size(); i++)
1243     {
1244         COutPoint prevout = vin[i].prevout;
1245         if (inputsRet.count(prevout.hash))
1246             continue; // Got it already
1247
1248         // Read txindex
1249         CTxIndex& txindex = inputsRet[prevout.hash].first;
1250         bool fFound = true;
1251         if ((fBlock || fMiner) && mapTestPool.count(prevout.hash))
1252         {
1253             // Get txindex from current proposed changes
1254             txindex = mapTestPool.find(prevout.hash)->second;
1255         }
1256         else
1257         {
1258             // Read txindex from txdb
1259             fFound = txdb.ReadTxIndex(prevout.hash, txindex);
1260         }
1261         if (!fFound && (fBlock || fMiner))
1262             return fMiner ? false : error("FetchInputs() : %s prev tx %s index entry not found", GetHash().ToString().substr(0,10).c_str(),  prevout.hash.ToString().substr(0,10).c_str());
1263
1264         // Read txPrev
1265         CTransaction& txPrev = inputsRet[prevout.hash].second;
1266         if (!fFound || txindex.pos == CDiskTxPos(1,1,1))
1267         {
1268             // Get prev tx from single transactions in memory
1269             {
1270                 LOCK(mempool.cs);
1271                 if (!mempool.exists(prevout.hash))
1272                     return error("FetchInputs() : %s mempool Tx prev not found %s", GetHash().ToString().substr(0,10).c_str(),  prevout.hash.ToString().substr(0,10).c_str());
1273                 txPrev = mempool.lookup(prevout.hash);
1274             }
1275             if (!fFound)
1276                 txindex.vSpent.resize(txPrev.vout.size());
1277         }
1278         else
1279         {
1280             // Get prev tx from disk
1281             if (!txPrev.ReadFromDisk(txindex.pos))
1282                 return error("FetchInputs() : %s ReadFromDisk prev tx %s failed", GetHash().ToString().substr(0,10).c_str(),  prevout.hash.ToString().substr(0,10).c_str());
1283         }
1284     }
1285
1286     // Make sure all prevout.n indexes are valid:
1287     for (unsigned int i = 0; i < vin.size(); i++)
1288     {
1289         const COutPoint prevout = vin[i].prevout;
1290         assert(inputsRet.count(prevout.hash) != 0);
1291         const CTxIndex& txindex = inputsRet[prevout.hash].first;
1292         const CTransaction& txPrev = inputsRet[prevout.hash].second;
1293         if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size())
1294         {
1295             // Revisit this if/when transaction replacement is implemented and allows
1296             // adding inputs:
1297             fInvalid = true;
1298             return DoS(100, error("FetchInputs() : %s prevout.n out of range %d %"PRIszu" %"PRIszu" prev tx %s\n%s", GetHash().ToString().substr(0,10).c_str(), prevout.n, txPrev.vout.size(), txindex.vSpent.size(), prevout.hash.ToString().substr(0,10).c_str(), txPrev.ToString().c_str()));
1299         }
1300     }
1301
1302     return true;
1303 }
1304
1305 const CTxOut& CTransaction::GetOutputFor(const CTxIn& input, const MapPrevTx& inputs) const
1306 {
1307     MapPrevTx::const_iterator mi = inputs.find(input.prevout.hash);
1308     if (mi == inputs.end())
1309         throw std::runtime_error("CTransaction::GetOutputFor() : prevout.hash not found");
1310
1311     const CTransaction& txPrev = (mi->second).second;
1312     if (input.prevout.n >= txPrev.vout.size())
1313         throw std::runtime_error("CTransaction::GetOutputFor() : prevout.n out of range");
1314
1315     return txPrev.vout[input.prevout.n];
1316 }
1317
1318 int64 CTransaction::GetValueIn(const MapPrevTx& inputs) const
1319 {
1320     if (IsCoinBase())
1321         return 0;
1322
1323     int64 nResult = 0;
1324     for (unsigned int i = 0; i < vin.size(); i++)
1325     {
1326         nResult += GetOutputFor(vin[i], inputs).nValue;
1327     }
1328     return nResult;
1329
1330 }
1331
1332 unsigned int CTransaction::GetP2SHSigOpCount(const MapPrevTx& inputs) const
1333 {
1334     if (IsCoinBase())
1335         return 0;
1336
1337     unsigned int nSigOps = 0;
1338     for (unsigned int i = 0; i < vin.size(); i++)
1339     {
1340         const CTxOut& prevout = GetOutputFor(vin[i], inputs);
1341         if (prevout.scriptPubKey.IsPayToScriptHash())
1342             nSigOps += prevout.scriptPubKey.GetSigOpCount(vin[i].scriptSig);
1343     }
1344     return nSigOps;
1345 }
1346
1347 bool CTransaction::ConnectInputs(CTxDB& txdb, MapPrevTx inputs,
1348                                  map<uint256, CTxIndex>& mapTestPool, const CDiskTxPos& posThisTx,
1349                                  const CBlockIndex* pindexBlock, bool fBlock, bool fMiner, bool fStrictPayToScriptHash)
1350 {
1351     // Take over previous transactions' spent pointers
1352     // fBlock is true when this is called from AcceptBlock when a new best-block is added to the blockchain
1353     // fMiner is true when called from the internal bitcoin miner
1354     // ... both are false when called from CTransaction::AcceptToMemoryPool
1355     if (!IsCoinBase())
1356     {
1357         int64 nValueIn = 0;
1358         int64 nFees = 0;
1359         for (unsigned int i = 0; i < vin.size(); i++)
1360         {
1361             COutPoint prevout = vin[i].prevout;
1362             assert(inputs.count(prevout.hash) > 0);
1363             CTxIndex& txindex = inputs[prevout.hash].first;
1364             CTransaction& txPrev = inputs[prevout.hash].second;
1365
1366             if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size())
1367                 return DoS(100, error("ConnectInputs() : %s prevout.n out of range %d %"PRIszu" %"PRIszu" prev tx %s\n%s", GetHash().ToString().substr(0,10).c_str(), prevout.n, txPrev.vout.size(), txindex.vSpent.size(), prevout.hash.ToString().substr(0,10).c_str(), txPrev.ToString().c_str()));
1368
1369             // If prev is coinbase or coinstake, check that it's matured
1370             if (txPrev.IsCoinBase() || txPrev.IsCoinStake())
1371                 for (const CBlockIndex* pindex = pindexBlock; pindex && pindexBlock->nHeight - pindex->nHeight < nCoinbaseMaturity; pindex = pindex->pprev)
1372                     if (pindex->nBlockPos == txindex.pos.nBlockPos && pindex->nFile == txindex.pos.nFile)
1373                         return error("ConnectInputs() : tried to spend %s at depth %d", txPrev.IsCoinBase() ? "coinbase" : "coinstake", pindexBlock->nHeight - pindex->nHeight);
1374
1375             // ppcoin: check transaction timestamp
1376             if (txPrev.nTime > nTime)
1377                 return DoS(100, error("ConnectInputs() : transaction timestamp earlier than input transaction"));
1378
1379             // Check for negative or overflow input values
1380             nValueIn += txPrev.vout[prevout.n].nValue;
1381             if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
1382                 return DoS(100, error("ConnectInputs() : txin values out of range"));
1383
1384         }
1385         // The first loop above does all the inexpensive checks.
1386         // Only if ALL inputs pass do we perform expensive ECDSA signature checks.
1387         // Helps prevent CPU exhaustion attacks.
1388         for (unsigned int i = 0; i < vin.size(); i++)
1389         {
1390             COutPoint prevout = vin[i].prevout;
1391             assert(inputs.count(prevout.hash) > 0);
1392             CTxIndex& txindex = inputs[prevout.hash].first;
1393             CTransaction& txPrev = inputs[prevout.hash].second;
1394
1395             // Check for conflicts (double-spend)
1396             // This doesn't trigger the DoS code on purpose; if it did, it would make it easier
1397             // for an attacker to attempt to split the network.
1398             if (!txindex.vSpent[prevout.n].IsNull())
1399                 return fMiner ? false : error("ConnectInputs() : %s prev tx already used at %s", GetHash().ToString().substr(0,10).c_str(), txindex.vSpent[prevout.n].ToString().c_str());
1400
1401             // Skip ECDSA signature verification when connecting blocks (fBlock=true)
1402             // before the last blockchain checkpoint. This is safe because block merkle hashes are
1403             // still computed and checked, and any change will be caught at the next checkpoint.
1404             if (!(fBlock && (nBestHeight < Checkpoints::GetTotalBlocksEstimate())))
1405             {
1406                 // Verify signature
1407                 if (!VerifySignature(txPrev, *this, i, fStrictPayToScriptHash, 0))
1408                 {
1409                     // only during transition phase for P2SH: do not invoke anti-DoS code for
1410                     // potentially old clients relaying bad P2SH transactions
1411                     if (fStrictPayToScriptHash && VerifySignature(txPrev, *this, i, false, 0))
1412                         return error("ConnectInputs() : %s P2SH VerifySignature failed", GetHash().ToString().substr(0,10).c_str());
1413
1414                     return DoS(100,error("ConnectInputs() : %s VerifySignature failed", GetHash().ToString().substr(0,10).c_str()));
1415                 }
1416             }
1417
1418             // Mark outpoints as spent
1419             txindex.vSpent[prevout.n] = posThisTx;
1420
1421             // Write back
1422             if (fBlock || fMiner)
1423             {
1424                 mapTestPool[prevout.hash] = txindex;
1425             }
1426         }
1427
1428         if (IsCoinStake())
1429         {
1430             // ppcoin: coin stake tx earns reward instead of paying fee
1431             uint64 nCoinAge;
1432             if (!GetCoinAge(txdb, nCoinAge))
1433                 return error("ConnectInputs() : %s unable to get coin age for coinstake", GetHash().ToString().substr(0,10).c_str());
1434             int64 nStakeReward = GetValueOut() - nValueIn;
1435             if (nStakeReward > GetProofOfStakeReward(nCoinAge, pindexBlock->nBits, nTime) - GetMinFee() + MIN_TX_FEE)
1436                 return DoS(100, error("ConnectInputs() : %s stake reward exceeded", GetHash().ToString().substr(0,10).c_str()));
1437         }
1438         else
1439         {
1440             if (nValueIn < GetValueOut())
1441                 return DoS(100, error("ConnectInputs() : %s value in < value out", GetHash().ToString().substr(0,10).c_str()));
1442
1443             // Tally transaction fees
1444             int64 nTxFee = nValueIn - GetValueOut();
1445             if (nTxFee < 0)
1446                 return DoS(100, error("ConnectInputs() : %s nTxFee < 0", GetHash().ToString().substr(0,10).c_str()));
1447             // ppcoin: enforce transaction fees for every block
1448             if (nTxFee < GetMinFee())
1449                 return fBlock? DoS(100, error("ConnectInputs() : %s not paying required fee=%s, paid=%s", GetHash().ToString().substr(0,10).c_str(), FormatMoney(GetMinFee()).c_str(), FormatMoney(nTxFee).c_str())) : false;
1450
1451             nFees += nTxFee;
1452             if (!MoneyRange(nFees))
1453                 return DoS(100, error("ConnectInputs() : nFees out of range"));
1454         }
1455     }
1456
1457     return true;
1458 }
1459
1460
1461 bool CTransaction::ClientConnectInputs()
1462 {
1463     if (IsCoinBase())
1464         return false;
1465
1466     // Take over previous transactions' spent pointers
1467     {
1468         LOCK(mempool.cs);
1469         int64 nValueIn = 0;
1470         for (unsigned int i = 0; i < vin.size(); i++)
1471         {
1472             // Get prev tx from single transactions in memory
1473             COutPoint prevout = vin[i].prevout;
1474             if (!mempool.exists(prevout.hash))
1475                 return false;
1476             CTransaction& txPrev = mempool.lookup(prevout.hash);
1477
1478             if (prevout.n >= txPrev.vout.size())
1479                 return false;
1480
1481             // Verify signature
1482             if (!VerifySignature(txPrev, *this, i, true, 0))
1483                 return error("ConnectInputs() : VerifySignature failed");
1484
1485             ///// this is redundant with the mempool.mapNextTx stuff,
1486             ///// not sure which I want to get rid of
1487             ///// this has to go away now that posNext is gone
1488             // // Check for conflicts
1489             // if (!txPrev.vout[prevout.n].posNext.IsNull())
1490             //     return error("ConnectInputs() : prev tx already used");
1491             //
1492             // // Flag outpoints as used
1493             // txPrev.vout[prevout.n].posNext = posThisTx;
1494
1495             nValueIn += txPrev.vout[prevout.n].nValue;
1496
1497             if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
1498                 return error("ClientConnectInputs() : txin values out of range");
1499         }
1500         if (GetValueOut() > nValueIn)
1501             return false;
1502     }
1503
1504     return true;
1505 }
1506
1507
1508
1509
1510 bool CBlock::DisconnectBlock(CTxDB& txdb, CBlockIndex* pindex)
1511 {
1512     // Disconnect in reverse order
1513     for (int i = vtx.size()-1; i >= 0; i--)
1514         if (!vtx[i].DisconnectInputs(txdb))
1515             return false;
1516
1517     // Update block index on disk without changing it in memory.
1518     // The memory index structure will be changed after the db commits.
1519     if (pindex->pprev)
1520     {
1521         CDiskBlockIndex blockindexPrev(pindex->pprev);
1522         blockindexPrev.hashNext = 0;
1523         if (!txdb.WriteBlockIndex(blockindexPrev))
1524             return error("DisconnectBlock() : WriteBlockIndex failed");
1525     }
1526
1527     // ppcoin: clean up wallet after disconnecting coinstake
1528     BOOST_FOREACH(CTransaction& tx, vtx)
1529         SyncWithWallets(tx, this, false, false);
1530
1531     return true;
1532 }
1533
1534 bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex, bool fJustCheck)
1535 {
1536     // Check it again in case a previous version let a bad block in
1537     if (!CheckBlock(!fJustCheck, !fJustCheck))
1538         return false;
1539
1540     // Do not allow blocks that contain transactions which 'overwrite' older transactions,
1541     // unless those are already completely spent.
1542     // If such overwrites are allowed, coinbases and transactions depending upon those
1543     // can be duplicated to remove the ability to spend the first instance -- even after
1544     // being sent to another address.
1545     // See BIP30 and http://r6.ca/blog/20120206T005236Z.html for more information.
1546     // This logic is not necessary for memory pool transactions, as AcceptToMemoryPool
1547     // already refuses previously-known transaction ids entirely.
1548     // This rule was originally applied all blocks whose timestamp was after March 15, 2012, 0:00 UTC.
1549     // Now that the whole chain is irreversibly beyond that time it is applied to all blocks except the
1550     // two in the chain that violate it. This prevents exploiting the issue against nodes in their
1551     // initial block download.
1552     bool fEnforceBIP30 = true; // Always active in NovaCoin
1553     bool fStrictPayToScriptHash = true; // Always active in NovaCoin
1554
1555     //// issue here: it doesn't know the version
1556     unsigned int nTxPos;
1557     if (fJustCheck)
1558         // FetchInputs treats CDiskTxPos(1,1,1) as a special "refer to memorypool" indicator
1559         // Since we're just checking the block and not actually connecting it, it might not (and probably shouldn't) be on the disk to get the transaction from
1560         nTxPos = 1;
1561     else
1562         nTxPos = pindex->nBlockPos + ::GetSerializeSize(CBlock(), SER_DISK, CLIENT_VERSION) - (2 * GetSizeOfCompactSize(0)) + GetSizeOfCompactSize(vtx.size());
1563
1564     map<uint256, CTxIndex> mapQueuedChanges;
1565     int64 nFees = 0;
1566     int64 nValueIn = 0;
1567     int64 nValueOut = 0;
1568     unsigned int nSigOps = 0;
1569     BOOST_FOREACH(CTransaction& tx, vtx)
1570     {
1571         uint256 hashTx = tx.GetHash();
1572
1573         if (fEnforceBIP30) {
1574             CTxIndex txindexOld;
1575             if (txdb.ReadTxIndex(hashTx, txindexOld)) {
1576                 BOOST_FOREACH(CDiskTxPos &pos, txindexOld.vSpent)
1577                     if (pos.IsNull())
1578                         return false;
1579             }
1580         }
1581
1582         nSigOps += tx.GetLegacySigOpCount();
1583         if (nSigOps > MAX_BLOCK_SIGOPS)
1584             return DoS(100, error("ConnectBlock() : too many sigops"));
1585
1586         CDiskTxPos posThisTx(pindex->nFile, pindex->nBlockPos, nTxPos);
1587         if (!fJustCheck)
1588             nTxPos += ::GetSerializeSize(tx, SER_DISK, CLIENT_VERSION);
1589
1590         MapPrevTx mapInputs;
1591         if (tx.IsCoinBase())
1592             nValueOut += tx.GetValueOut();
1593         else
1594         {
1595             bool fInvalid;
1596             if (!tx.FetchInputs(txdb, mapQueuedChanges, true, false, mapInputs, fInvalid))
1597                 return false;
1598
1599             if (fStrictPayToScriptHash)
1600             {
1601                 // Add in sigops done by pay-to-script-hash inputs;
1602                 // this is to prevent a "rogue miner" from creating
1603                 // an incredibly-expensive-to-validate block.
1604                 nSigOps += tx.GetP2SHSigOpCount(mapInputs);
1605                 if (nSigOps > MAX_BLOCK_SIGOPS)
1606                     return DoS(100, error("ConnectBlock() : too many sigops"));
1607             }
1608
1609             int64 nTxValueIn = tx.GetValueIn(mapInputs);
1610             int64 nTxValueOut = tx.GetValueOut();
1611             nValueIn += nTxValueIn;
1612             nValueOut += nTxValueOut;
1613             if (!tx.IsCoinStake())
1614                 nFees += nTxValueIn - nTxValueOut;
1615
1616             if (!tx.ConnectInputs(txdb, mapInputs, mapQueuedChanges, posThisTx, pindex, true, false, fStrictPayToScriptHash))
1617                 return false;
1618         }
1619
1620         mapQueuedChanges[hashTx] = CTxIndex(posThisTx, tx.vout.size());
1621     }
1622
1623     // ppcoin: track money supply and mint amount info
1624     pindex->nMint = nValueOut - nValueIn + nFees;
1625     pindex->nMoneySupply = (pindex->pprev? pindex->pprev->nMoneySupply : 0) + nValueOut - nValueIn;
1626     if (!txdb.WriteBlockIndex(CDiskBlockIndex(pindex)))
1627         return error("Connect() : WriteBlockIndex for pindex failed");
1628
1629     // ppcoin: fees are not collected by miners as in bitcoin
1630     // ppcoin: fees are destroyed to compensate the entire network
1631     if (fDebug && GetBoolArg("-printcreation"))
1632         printf("ConnectBlock() : destroy=%s nFees=%"PRI64d"\n", FormatMoney(nFees).c_str(), nFees);
1633
1634     if (fJustCheck)
1635         return true;
1636
1637     // Write queued txindex changes
1638     for (map<uint256, CTxIndex>::iterator mi = mapQueuedChanges.begin(); mi != mapQueuedChanges.end(); ++mi)
1639     {
1640         if (!txdb.UpdateTxIndex((*mi).first, (*mi).second))
1641             return error("ConnectBlock() : UpdateTxIndex failed");
1642     }
1643
1644     // Update block index on disk without changing it in memory.
1645     // The memory index structure will be changed after the db commits.
1646     if (pindex->pprev)
1647     {
1648         CDiskBlockIndex blockindexPrev(pindex->pprev);
1649         blockindexPrev.hashNext = pindex->GetBlockHash();
1650         if (!txdb.WriteBlockIndex(blockindexPrev))
1651             return error("ConnectBlock() : WriteBlockIndex failed");
1652     }
1653
1654     // Watch for transactions paying to me
1655     BOOST_FOREACH(CTransaction& tx, vtx)
1656         SyncWithWallets(tx, this, true);
1657
1658     return true;
1659 }
1660
1661 bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew)
1662 {
1663     printf("REORGANIZE\n");
1664
1665     // Find the fork
1666     CBlockIndex* pfork = pindexBest;
1667     CBlockIndex* plonger = pindexNew;
1668     while (pfork != plonger)
1669     {
1670         while (plonger->nHeight > pfork->nHeight)
1671             if (!(plonger = plonger->pprev))
1672                 return error("Reorganize() : plonger->pprev is null");
1673         if (pfork == plonger)
1674             break;
1675         if (!(pfork = pfork->pprev))
1676             return error("Reorganize() : pfork->pprev is null");
1677     }
1678
1679     // List of what to disconnect
1680     vector<CBlockIndex*> vDisconnect;
1681     for (CBlockIndex* pindex = pindexBest; pindex != pfork; pindex = pindex->pprev)
1682         vDisconnect.push_back(pindex);
1683
1684     // List of what to connect
1685     vector<CBlockIndex*> vConnect;
1686     for (CBlockIndex* pindex = pindexNew; pindex != pfork; pindex = pindex->pprev)
1687         vConnect.push_back(pindex);
1688     reverse(vConnect.begin(), vConnect.end());
1689
1690     printf("REORGANIZE: Disconnect %"PRIszu" blocks; %s..%s\n", vDisconnect.size(), pfork->GetBlockHash().ToString().substr(0,20).c_str(), pindexBest->GetBlockHash().ToString().substr(0,20).c_str());
1691     printf("REORGANIZE: Connect %"PRIszu" blocks; %s..%s\n", vConnect.size(), pfork->GetBlockHash().ToString().substr(0,20).c_str(), pindexNew->GetBlockHash().ToString().substr(0,20).c_str());
1692
1693     // Disconnect shorter branch
1694     vector<CTransaction> vResurrect;
1695     BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
1696     {
1697         CBlock block;
1698         if (!block.ReadFromDisk(pindex))
1699             return error("Reorganize() : ReadFromDisk for disconnect failed");
1700         if (!block.DisconnectBlock(txdb, pindex))
1701             return error("Reorganize() : DisconnectBlock %s failed", pindex->GetBlockHash().ToString().substr(0,20).c_str());
1702
1703         // Queue memory transactions to resurrect
1704         BOOST_FOREACH(const CTransaction& tx, block.vtx)
1705             if (!(tx.IsCoinBase() || tx.IsCoinStake()))
1706                 vResurrect.push_back(tx);
1707     }
1708
1709     // Connect longer branch
1710     vector<CTransaction> vDelete;
1711     for (unsigned int i = 0; i < vConnect.size(); i++)
1712     {
1713         CBlockIndex* pindex = vConnect[i];
1714         CBlock block;
1715         if (!block.ReadFromDisk(pindex))
1716             return error("Reorganize() : ReadFromDisk for connect failed");
1717         if (!block.ConnectBlock(txdb, pindex))
1718         {
1719             // Invalid block
1720             return error("Reorganize() : ConnectBlock %s failed", pindex->GetBlockHash().ToString().substr(0,20).c_str());
1721         }
1722
1723         // Queue memory transactions to delete
1724         BOOST_FOREACH(const CTransaction& tx, block.vtx)
1725             vDelete.push_back(tx);
1726     }
1727     if (!txdb.WriteHashBestChain(pindexNew->GetBlockHash()))
1728         return error("Reorganize() : WriteHashBestChain failed");
1729
1730     // Make sure it's successfully written to disk before changing memory structure
1731     if (!txdb.TxnCommit())
1732         return error("Reorganize() : TxnCommit failed");
1733
1734     // Disconnect shorter branch
1735     BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
1736         if (pindex->pprev)
1737             pindex->pprev->pnext = NULL;
1738
1739     // Connect longer branch
1740     BOOST_FOREACH(CBlockIndex* pindex, vConnect)
1741         if (pindex->pprev)
1742             pindex->pprev->pnext = pindex;
1743
1744     // Resurrect memory transactions that were in the disconnected branch
1745     BOOST_FOREACH(CTransaction& tx, vResurrect)
1746         tx.AcceptToMemoryPool(txdb, false);
1747
1748     // Delete redundant memory transactions that are in the connected branch
1749     BOOST_FOREACH(CTransaction& tx, vDelete)
1750         mempool.remove(tx);
1751
1752     printf("REORGANIZE: done\n");
1753
1754     return true;
1755 }
1756
1757
1758 // Called from inside SetBestChain: attaches a block to the new best chain being built
1759 bool CBlock::SetBestChainInner(CTxDB& txdb, CBlockIndex *pindexNew)
1760 {
1761     uint256 hash = GetHash();
1762
1763     // Adding to current best branch
1764     if (!ConnectBlock(txdb, pindexNew) || !txdb.WriteHashBestChain(hash))
1765     {
1766         txdb.TxnAbort();
1767         InvalidChainFound(pindexNew);
1768         return false;
1769     }
1770     if (!txdb.TxnCommit())
1771         return error("SetBestChain() : TxnCommit failed");
1772
1773     // Add to current best branch
1774     pindexNew->pprev->pnext = pindexNew;
1775
1776     // Delete redundant memory transactions
1777     BOOST_FOREACH(CTransaction& tx, vtx)
1778         mempool.remove(tx);
1779
1780     return true;
1781 }
1782
1783 bool CBlock::SetBestChain(CTxDB& txdb, CBlockIndex* pindexNew)
1784 {
1785     uint256 hash = GetHash();
1786
1787     if (!txdb.TxnBegin())
1788         return error("SetBestChain() : TxnBegin failed");
1789
1790     if (pindexGenesisBlock == NULL && hash == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet))
1791     {
1792         txdb.WriteHashBestChain(hash);
1793         if (!txdb.TxnCommit())
1794             return error("SetBestChain() : TxnCommit failed");
1795         pindexGenesisBlock = pindexNew;
1796     }
1797     else if (hashPrevBlock == hashBestChain)
1798     {
1799         if (!SetBestChainInner(txdb, pindexNew))
1800             return error("SetBestChain() : SetBestChainInner failed");
1801     }
1802     else
1803     {
1804         // the first block in the new chain that will cause it to become the new best chain
1805         CBlockIndex *pindexIntermediate = pindexNew;
1806
1807         // list of blocks that need to be connected afterwards
1808         std::vector<CBlockIndex*> vpindexSecondary;
1809
1810         // Reorganize is costly in terms of db load, as it works in a single db transaction.
1811         // Try to limit how much needs to be done inside
1812         while (pindexIntermediate->pprev && pindexIntermediate->pprev->bnChainTrust > pindexBest->bnChainTrust)
1813         {
1814             vpindexSecondary.push_back(pindexIntermediate);
1815             pindexIntermediate = pindexIntermediate->pprev;
1816         }
1817
1818         if (!vpindexSecondary.empty())
1819             printf("Postponing %"PRIszu" reconnects\n", vpindexSecondary.size());
1820
1821         // Switch to new best branch
1822         if (!Reorganize(txdb, pindexIntermediate))
1823         {
1824             txdb.TxnAbort();
1825             InvalidChainFound(pindexNew);
1826             return error("SetBestChain() : Reorganize failed");
1827         }
1828
1829         // Connect further blocks
1830         BOOST_REVERSE_FOREACH(CBlockIndex *pindex, vpindexSecondary)
1831         {
1832             CBlock block;
1833             if (!block.ReadFromDisk(pindex))
1834             {
1835                 printf("SetBestChain() : ReadFromDisk failed\n");
1836                 break;
1837             }
1838             if (!txdb.TxnBegin()) {
1839                 printf("SetBestChain() : TxnBegin 2 failed\n");
1840                 break;
1841             }
1842             // errors now are not fatal, we still did a reorganisation to a new chain in a valid way
1843             if (!block.SetBestChainInner(txdb, pindex))
1844                 break;
1845         }
1846     }
1847
1848     // Update best block in wallet (so we can detect restored wallets)
1849     bool fIsInitialDownload = IsInitialBlockDownload();
1850     if (!fIsInitialDownload)
1851     {
1852         const CBlockLocator locator(pindexNew);
1853         ::SetBestChain(locator);
1854     }
1855
1856     // New best block
1857     hashBestChain = hash;
1858     pindexBest = pindexNew;
1859     pblockindexFBBHLast = NULL;
1860     nBestHeight = pindexBest->nHeight;
1861     bnBestChainTrust = pindexNew->bnChainTrust;
1862     nTimeBestReceived = GetTime();
1863     nTransactionsUpdated++;
1864
1865     CBigNum bnBestBlockTrust = pindexBest->nHeight != 0 ? (pindexBest->bnChainTrust - pindexBest->pprev->bnChainTrust) : pindexBest->bnChainTrust;
1866
1867     printf("SetBestChain: new best=%s  height=%d  trust=%s  blocktrust=%s  date=%s\n",
1868       hashBestChain.ToString().substr(0,20).c_str(), nBestHeight, bnBestChainTrust.ToString().c_str(),
1869       bnBestBlockTrust.ToString().c_str(),
1870       DateTimeStrFormat("%x %H:%M:%S", pindexBest->GetBlockTime()).c_str());
1871
1872     // Check the version of the last 100 blocks to see if we need to upgrade:
1873     if (!fIsInitialDownload)
1874     {
1875         int nUpgraded = 0;
1876         const CBlockIndex* pindex = pindexBest;
1877         for (int i = 0; i < 100 && pindex != NULL; i++)
1878         {
1879             if (pindex->nVersion > CBlock::CURRENT_VERSION)
1880                 ++nUpgraded;
1881             pindex = pindex->pprev;
1882         }
1883         if (nUpgraded > 0)
1884             printf("SetBestChain: %d of last 100 blocks above version %d\n", nUpgraded, CBlock::CURRENT_VERSION);
1885         if (nUpgraded > 100/2)
1886             // strMiscWarning is read by GetWarnings(), called by Qt and the JSON-RPC code to warn the user:
1887             strMiscWarning = _("Warning: This version is obsolete, upgrade required!");
1888     }
1889
1890     std::string strCmd = GetArg("-blocknotify", "");
1891
1892     if (!fIsInitialDownload && !strCmd.empty())
1893     {
1894         boost::replace_all(strCmd, "%s", hashBestChain.GetHex());
1895         boost::thread t(runCommand, strCmd); // thread runs free
1896     }
1897
1898     return true;
1899 }
1900
1901 // ppcoin: total coin age spent in transaction, in the unit of coin-days.
1902 // Only those coins meeting minimum age requirement counts. As those
1903 // transactions not in main chain are not currently indexed so we
1904 // might not find out about their coin age. Older transactions are 
1905 // guaranteed to be in main chain by sync-checkpoint. This rule is
1906 // introduced to help nodes establish a consistent view of the coin
1907 // age (trust score) of competing branches.
1908 bool CTransaction::GetCoinAge(CTxDB& txdb, uint64& nCoinAge) const
1909 {
1910     CBigNum bnCentSecond = 0;  // coin age in the unit of cent-seconds
1911     nCoinAge = 0;
1912
1913     if (IsCoinBase())
1914         return true;
1915
1916     BOOST_FOREACH(const CTxIn& txin, vin)
1917     {
1918         // First try finding the previous transaction in database
1919         CTransaction txPrev;
1920         CTxIndex txindex;
1921         if (!txPrev.ReadFromDisk(txdb, txin.prevout, txindex))
1922             continue;  // previous transaction not in main chain
1923         if (nTime < txPrev.nTime)
1924             return false;  // Transaction timestamp violation
1925
1926         // Read block header
1927         CBlock block;
1928         if (!block.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos, false))
1929             return false; // unable to read block of previous transaction
1930         if (block.GetBlockTime() + nStakeMinAge > nTime)
1931             continue; // only count coins meeting min age requirement
1932
1933         int64 nValueIn = txPrev.vout[txin.prevout.n].nValue;
1934         bnCentSecond += CBigNum(nValueIn) * (nTime-txPrev.nTime) / CENT;
1935
1936         if (fDebug && GetBoolArg("-printcoinage"))
1937             printf("coin age nValueIn=%"PRI64d" nTimeDiff=%d bnCentSecond=%s\n", nValueIn, nTime - txPrev.nTime, bnCentSecond.ToString().c_str());
1938     }
1939
1940     CBigNum bnCoinDay = bnCentSecond * CENT / COIN / (24 * 60 * 60);
1941     if (fDebug && GetBoolArg("-printcoinage"))
1942         printf("coin age bnCoinDay=%s\n", bnCoinDay.ToString().c_str());
1943     nCoinAge = bnCoinDay.getuint64();
1944     return true;
1945 }
1946
1947 // ppcoin: total coin age spent in block, in the unit of coin-days.
1948 bool CBlock::GetCoinAge(uint64& nCoinAge) const
1949 {
1950     nCoinAge = 0;
1951
1952     CTxDB txdb("r");
1953     BOOST_FOREACH(const CTransaction& tx, vtx)
1954     {
1955         uint64 nTxCoinAge;
1956         if (tx.GetCoinAge(txdb, nTxCoinAge))
1957             nCoinAge += nTxCoinAge;
1958         else
1959             return false;
1960     }
1961
1962     if (nCoinAge == 0) // block coin age minimum 1 coin-day
1963         nCoinAge = 1;
1964     if (fDebug && GetBoolArg("-printcoinage"))
1965         printf("block coin age total nCoinDays=%"PRI64d"\n", nCoinAge);
1966     return true;
1967 }
1968
1969 bool CBlock::AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos)
1970 {
1971     // Check for duplicate
1972     uint256 hash = GetHash();
1973     if (mapBlockIndex.count(hash))
1974         return error("AddToBlockIndex() : %s already exists", hash.ToString().substr(0,20).c_str());
1975
1976     // Construct new block index object
1977     CBlockIndex* pindexNew = new CBlockIndex(nFile, nBlockPos, *this);
1978     if (!pindexNew)
1979         return error("AddToBlockIndex() : new CBlockIndex failed");
1980     pindexNew->phashBlock = &hash;
1981     map<uint256, CBlockIndex*>::iterator miPrev = mapBlockIndex.find(hashPrevBlock);
1982     if (miPrev != mapBlockIndex.end())
1983     {
1984         pindexNew->pprev = (*miPrev).second;
1985         pindexNew->nHeight = pindexNew->pprev->nHeight + 1;
1986     }
1987
1988     // ppcoin: compute chain trust score
1989     pindexNew->bnChainTrust = (pindexNew->pprev ? pindexNew->pprev->bnChainTrust : 0) + pindexNew->GetBlockTrust();
1990
1991     // ppcoin: compute stake entropy bit for stake modifier
1992     if (!pindexNew->SetStakeEntropyBit(GetStakeEntropyBit(pindexNew->nHeight)))
1993         return error("AddToBlockIndex() : SetStakeEntropyBit() failed");
1994
1995     // ppcoin: record proof-of-stake hash value
1996     if (pindexNew->IsProofOfStake())
1997     {
1998         if (!mapProofOfStake.count(hash))
1999             return error("AddToBlockIndex() : hashProofOfStake not found in map");
2000         pindexNew->hashProofOfStake = mapProofOfStake[hash];
2001     }
2002
2003     // ppcoin: compute stake modifier
2004     uint64 nStakeModifier = 0;
2005     bool fGeneratedStakeModifier = false;
2006     if (!ComputeNextStakeModifier(pindexNew->pprev, nStakeModifier, fGeneratedStakeModifier))
2007         return error("AddToBlockIndex() : ComputeNextStakeModifier() failed");
2008     pindexNew->SetStakeModifier(nStakeModifier, fGeneratedStakeModifier);
2009     pindexNew->nStakeModifierChecksum = GetStakeModifierChecksum(pindexNew);
2010     if (!CheckStakeModifierCheckpoints(pindexNew->nHeight, pindexNew->nStakeModifierChecksum))
2011         return error("AddToBlockIndex() : Rejected by stake modifier checkpoint height=%d, modifier=0x%016"PRI64x, pindexNew->nHeight, nStakeModifier);
2012
2013     // Add to mapBlockIndex
2014     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.insert(make_pair(hash, pindexNew)).first;
2015     if (pindexNew->IsProofOfStake())
2016         setStakeSeen.insert(make_pair(pindexNew->prevoutStake, pindexNew->nStakeTime));
2017     pindexNew->phashBlock = &((*mi).first);
2018
2019     // Write to disk block index
2020     CTxDB txdb;
2021     if (!txdb.TxnBegin())
2022         return false;
2023     txdb.WriteBlockIndex(CDiskBlockIndex(pindexNew));
2024     if (!txdb.TxnCommit())
2025         return false;
2026
2027     // New best
2028     if (pindexNew->bnChainTrust > bnBestChainTrust)
2029         if (!SetBestChain(txdb, pindexNew))
2030             return false;
2031
2032     txdb.Close();
2033
2034     if (pindexNew == pindexBest)
2035     {
2036         // Notify UI to display prev block's coinbase if it was ours
2037         static uint256 hashPrevBestCoinBase;
2038         UpdatedTransaction(hashPrevBestCoinBase);
2039         hashPrevBestCoinBase = vtx[0].GetHash();
2040     }
2041
2042     uiInterface.NotifyBlocksChanged();
2043     return true;
2044 }
2045
2046
2047
2048
2049 bool CBlock::CheckBlock(bool fCheckPOW, bool fCheckMerkleRoot) const
2050 {
2051     // These are checks that are independent of context
2052     // that can be verified before saving an orphan block.
2053
2054     // Size limits
2055     if (vtx.empty() || vtx.size() > MAX_BLOCK_SIZE || ::GetSerializeSize(*this, SER_NETWORK, PROTOCOL_VERSION) > MAX_BLOCK_SIZE)
2056         return DoS(100, error("CheckBlock() : size limits failed"));
2057
2058     // Special short-term limits to avoid 10,000 BDB lock limit:
2059     if (GetBlockTime() < LOCKS_SWITCH_TIME)
2060     {
2061         // Rule is: #unique txids referenced <= 4,500
2062         // ... to prevent 10,000 BDB lock exhaustion on old clients
2063         set<uint256> setTxIn;
2064         for (size_t i = 0; i < vtx.size(); i++)
2065         {
2066             setTxIn.insert(vtx[i].GetHash());
2067             if (i == 0) continue; // skip coinbase txin
2068             BOOST_FOREACH(const CTxIn& txin, vtx[i].vin)
2069                     setTxIn.insert(txin.prevout.hash);
2070         }
2071         size_t nTxids = setTxIn.size();
2072         if (nTxids > 4500)
2073             return error("CheckBlock() : maxlocks violation");
2074     }
2075
2076     // Check proof of work matches claimed amount
2077     if (fCheckPOW && IsProofOfWork() && !CheckProofOfWork(GetHash(), nBits))
2078         return DoS(50, error("CheckBlock() : proof of work failed"));
2079
2080     // Check timestamp
2081     if (GetBlockTime() > GetAdjustedTime() + nMaxClockDrift)
2082         return error("CheckBlock() : block timestamp too far in the future");
2083
2084     // First transaction must be coinbase, the rest must not be
2085     if (vtx.empty() || !vtx[0].IsCoinBase())
2086         return DoS(100, error("CheckBlock() : first tx is not coinbase"));
2087     for (unsigned int i = 1; i < vtx.size(); i++)
2088         if (vtx[i].IsCoinBase())
2089             return DoS(100, error("CheckBlock() : more than one coinbase"));
2090
2091     // ppcoin: only the second transaction can be the optional coinstake
2092     for (unsigned int i = 2; i < vtx.size(); i++)
2093         if (vtx[i].IsCoinStake())
2094             return DoS(100, error("CheckBlock() : coinstake in wrong position"));
2095
2096     // ppcoin: coinbase output should be empty if proof-of-stake block
2097     if (IsProofOfStake() && (vtx[0].vout.size() != 1 || !vtx[0].vout[0].IsEmpty()))
2098         return error("CheckBlock() : coinbase output not empty for proof-of-stake block");
2099
2100     // Check coinbase timestamp
2101     if (GetBlockTime() > (int64)vtx[0].nTime + nMaxClockDrift)
2102         return DoS(50, error("CheckBlock() : coinbase timestamp is too early"));
2103
2104     // Check coinstake timestamp
2105     if (IsProofOfStake() && !CheckCoinStakeTimestamp(GetBlockTime(), (int64)vtx[1].nTime))
2106         return DoS(50, error("CheckBlock() : coinstake timestamp violation nTimeBlock=%"PRI64d" nTimeTx=%u", GetBlockTime(), vtx[1].nTime));
2107
2108     // Check coinbase reward
2109     if (vtx[0].GetValueOut() > (IsProofOfWork()? (GetProofOfWorkReward(nBits) - vtx[0].GetMinFee() + MIN_TX_FEE) : 0))
2110         return DoS(50, error("CheckBlock() : coinbase reward exceeded %s > %s", 
2111                    FormatMoney(vtx[0].GetValueOut()).c_str(),
2112                    FormatMoney(IsProofOfWork()? GetProofOfWorkReward(nBits) : 0).c_str()));
2113
2114     // Check transactions
2115     BOOST_FOREACH(const CTransaction& tx, vtx)
2116     {
2117         if (!tx.CheckTransaction())
2118             return DoS(tx.nDoS, error("CheckBlock() : CheckTransaction failed"));
2119
2120         // ppcoin: check transaction timestamp
2121         if (GetBlockTime() < (int64)tx.nTime)
2122             return DoS(50, error("CheckBlock() : block timestamp earlier than transaction timestamp"));
2123     }
2124
2125     // Check for duplicate txids. This is caught by ConnectInputs(),
2126     // but catching it earlier avoids a potential DoS attack:
2127     set<uint256> uniqueTx;
2128     BOOST_FOREACH(const CTransaction& tx, vtx)
2129     {
2130         uniqueTx.insert(tx.GetHash());
2131     }
2132     if (uniqueTx.size() != vtx.size())
2133         return DoS(100, error("CheckBlock() : duplicate transaction"));
2134
2135     unsigned int nSigOps = 0;
2136     BOOST_FOREACH(const CTransaction& tx, vtx)
2137     {
2138         nSigOps += tx.GetLegacySigOpCount();
2139     }
2140     if (nSigOps > MAX_BLOCK_SIGOPS)
2141         return DoS(100, error("CheckBlock() : out-of-bounds SigOpCount"));
2142
2143     // Check merkle root
2144     if (fCheckMerkleRoot && hashMerkleRoot != BuildMerkleTree())
2145         return DoS(100, error("CheckBlock() : hashMerkleRoot mismatch"));
2146
2147     // NovaCoin: check proof-of-stake block signature
2148     if (IsProofOfStake() || (!fTestNet && GetBlockTime() < CHAINCHECKS_SWITCH_TIME))
2149     {
2150         if (!CheckBlockSignature())
2151             return DoS(100, error("CheckBlock() : bad block signature"));
2152     }
2153
2154     return true;
2155 }
2156
2157 bool CBlock::AcceptBlock()
2158 {
2159     // Check for duplicate
2160     uint256 hash = GetHash();
2161     if (mapBlockIndex.count(hash))
2162         return error("AcceptBlock() : block already in mapBlockIndex");
2163
2164     // Get prev block index
2165     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashPrevBlock);
2166     if (mi == mapBlockIndex.end())
2167         return DoS(10, error("AcceptBlock() : prev block not found"));
2168     CBlockIndex* pindexPrev = (*mi).second;
2169     int nHeight = pindexPrev->nHeight+1;
2170
2171     // Check proof-of-work or proof-of-stake
2172     if (nBits != GetNextTargetRequired(pindexPrev, IsProofOfStake()))
2173         return DoS(100, error("AcceptBlock() : incorrect %s", IsProofOfWork() ? "proof-of-work" : "proof-of-stake"));
2174
2175     // Check timestamp against prev
2176     if (GetBlockTime() <= pindexPrev->GetMedianTimePast() || GetBlockTime() + nMaxClockDrift < pindexPrev->GetBlockTime())
2177         return error("AcceptBlock() : block's timestamp is too early");
2178
2179     // Check that all transactions are finalized
2180     BOOST_FOREACH(const CTransaction& tx, vtx)
2181         if (!tx.IsFinal(nHeight, GetBlockTime()))
2182             return DoS(10, error("AcceptBlock() : contains a non-final transaction"));
2183
2184     // Check that the block chain matches the known block chain up to a checkpoint
2185     if (!Checkpoints::CheckHardened(nHeight, hash))
2186         return DoS(100, error("AcceptBlock() : rejected by hardened checkpoint lock-in at %d", nHeight));
2187
2188     // ppcoin: check that the block satisfies synchronized checkpoint
2189     if (!Checkpoints::CheckSync(hash, pindexPrev))
2190     {
2191         if(!GetBoolArg("-nosynccheckpoints", false))
2192         {
2193             return error("AcceptBlock() : rejected by synchronized checkpoint");
2194         }
2195         else
2196         {
2197             strMiscWarning = _("WARNING: syncronized checkpoint violation detected, but skipped!");
2198         }
2199     }
2200
2201     // Reject block.nVersion < 3 blocks since 95% threshold on mainNet and always on testNet:
2202     if (nVersion < 3 && ((!fTestNet && nHeight > 14060) || (fTestNet && nHeight > 0)))
2203         return error("CheckBlock() : rejected nVersion < 3 block");
2204
2205     // Enforce rule that the coinbase starts with serialized block height
2206     CScript expect = CScript() << nHeight;
2207     if (!std::equal(expect.begin(), expect.end(), vtx[0].vin[0].scriptSig.begin()))
2208         return DoS(100, error("AcceptBlock() : block height mismatch in coinbase"));
2209
2210     // Write block to history file
2211     if (!CheckDiskSpace(::GetSerializeSize(*this, SER_DISK, CLIENT_VERSION)))
2212         return error("AcceptBlock() : out of disk space");
2213     unsigned int nFile = -1;
2214     unsigned int nBlockPos = 0;
2215     if (!WriteToDisk(nFile, nBlockPos))
2216         return error("AcceptBlock() : WriteToDisk failed");
2217     if (!AddToBlockIndex(nFile, nBlockPos))
2218         return error("AcceptBlock() : AddToBlockIndex failed");
2219
2220     // Relay inventory, but don't relay old inventory during initial block download
2221     int nBlockEstimate = Checkpoints::GetTotalBlocksEstimate();
2222     if (hashBestChain == hash)
2223     {
2224         LOCK(cs_vNodes);
2225         BOOST_FOREACH(CNode* pnode, vNodes)
2226             if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : nBlockEstimate))
2227                 pnode->PushInventory(CInv(MSG_BLOCK, hash));
2228     }
2229
2230     // ppcoin: check pending sync-checkpoint
2231     Checkpoints::AcceptPendingSyncCheckpoint();
2232
2233     return true;
2234 }
2235
2236 CBigNum CBlockIndex::GetBlockTrust() const
2237 {
2238     CBigNum bnTarget;
2239
2240     // Old protocol
2241     if (!fTestNet && GetBlockTime() < CHAINCHECKS_SWITCH_TIME)
2242     {
2243         CBigNum bnTarget;
2244         bnTarget.SetCompact(nBits);
2245
2246         if (bnTarget <= 0)
2247             return 0;
2248         return (IsProofOfStake()? (CBigNum(1)<<256) / (bnTarget+1) : 1);
2249     }
2250
2251     // New protocol
2252     if (pprev == NULL || pprev->nHeight < 10)
2253         return 1;
2254
2255     const CBlockIndex* currentIndex = pprev;
2256
2257     if(IsProofOfStake())
2258     {
2259         bnTarget.SetCompact(nBits);
2260         if (bnTarget <= 0)
2261             return 0;
2262
2263         if (!pprev->IsProofOfWork())
2264             return (CBigNum(1)<<256) / (3 * (bnTarget+1));
2265
2266         int nPoWCount = 0;
2267
2268         // Check last 12 blocks type
2269         while (pprev->nHeight - currentIndex->nHeight < 12)
2270         {
2271             if (currentIndex->IsProofOfWork())
2272                 nPoWCount++;
2273             currentIndex = currentIndex->pprev;
2274         }
2275
2276         // Return 1/3 of score if less than 3 PoW blocks found
2277         if (nPoWCount < 3)
2278             return (CBigNum(1)<<256) / (3 * (bnTarget+1));
2279
2280         return (CBigNum(1)<<256) / (bnTarget+1);
2281     }
2282     else
2283     {
2284         if (!(pprev->IsProofOfStake() && pprev->pprev->IsProofOfStake()))
2285             return 1 + (2 * (pprev->bnChainTrust - pprev->pprev->bnChainTrust) / 3);
2286
2287         int nPoSCount = 0;
2288
2289         // Check last 12 blocks type
2290         while (pprev->nHeight - currentIndex->nHeight < 12)
2291         {
2292             if (currentIndex->IsProofOfStake())
2293                 nPoSCount++;
2294             currentIndex = currentIndex->pprev;
2295         }
2296
2297         // Return 2/3 of previous block score if less than 7 PoS blocks found
2298         if (nPoSCount < 7)
2299             return 1 + (2 * (pprev->bnChainTrust - pprev->pprev->bnChainTrust) / 3);
2300
2301         return (pprev->bnChainTrust - pprev->pprev->bnChainTrust);
2302     }
2303 }
2304
2305 bool CBlockIndex::IsSuperMajority(int minVersion, const CBlockIndex* pstart, unsigned int nRequired, unsigned int nToCheck)
2306 {
2307     unsigned int nFound = 0;
2308     for (unsigned int i = 0; i < nToCheck && nFound < nRequired && pstart != NULL; i++)
2309     {
2310         if (pstart->nVersion >= minVersion)
2311             ++nFound;
2312         pstart = pstart->pprev;
2313     }
2314     return (nFound >= nRequired);
2315 }
2316
2317 bool ProcessBlock(CNode* pfrom, CBlock* pblock)
2318 {
2319     // Check for duplicate
2320     uint256 hash = pblock->GetHash();
2321     if (mapBlockIndex.count(hash))
2322         return error("ProcessBlock() : already have block %d %s", mapBlockIndex[hash]->nHeight, hash.ToString().substr(0,20).c_str());
2323     if (mapOrphanBlocks.count(hash))
2324         return error("ProcessBlock() : already have block (orphan) %s", hash.ToString().substr(0,20).c_str());
2325
2326     // ppcoin: check proof-of-stake
2327     // Limited duplicity on stake: prevents block flood attack
2328     // Duplicate stake allowed only when there is orphan child block
2329     if (pblock->IsProofOfStake() && setStakeSeen.count(pblock->GetProofOfStake()) && !mapOrphanBlocksByPrev.count(hash) && !Checkpoints::WantedByPendingSyncCheckpoint(hash))
2330         return error("ProcessBlock() : duplicate proof-of-stake (%s, %d) for block %s", pblock->GetProofOfStake().first.ToString().c_str(), pblock->GetProofOfStake().second, hash.ToString().c_str());
2331
2332     // Preliminary checks
2333     if (!pblock->CheckBlock())
2334         return error("ProcessBlock() : CheckBlock FAILED");
2335
2336     // ppcoin: verify hash target and signature of coinstake tx
2337     if (pblock->IsProofOfStake())
2338     {
2339         uint256 hashProofOfStake = 0;
2340         if (!CheckProofOfStake(pblock->vtx[1], pblock->nBits, hashProofOfStake))
2341         {
2342             printf("WARNING: ProcessBlock(): check proof-of-stake failed for block %s\n", hash.ToString().c_str());
2343             return false; // do not error here as we expect this during initial block download
2344         }
2345         if (!mapProofOfStake.count(hash)) // add to mapProofOfStake
2346             mapProofOfStake.insert(make_pair(hash, hashProofOfStake));
2347     }
2348
2349     CBlockIndex* pcheckpoint = Checkpoints::GetLastSyncCheckpoint();
2350     if (pcheckpoint && pblock->hashPrevBlock != hashBestChain && !Checkpoints::WantedByPendingSyncCheckpoint(hash))
2351     {
2352         // Extra checks to prevent "fill up memory by spamming with bogus blocks"
2353         int64 deltaTime = pblock->GetBlockTime() - pcheckpoint->nTime;
2354         CBigNum bnNewBlock;
2355         bnNewBlock.SetCompact(pblock->nBits);
2356         CBigNum bnRequired;
2357         bnRequired.SetCompact(ComputeMinWork(GetLastBlockIndex(pcheckpoint, pblock->IsProofOfStake())->nBits, deltaTime));
2358         if (bnNewBlock > bnRequired)
2359         {
2360             if (pfrom)
2361                 pfrom->Misbehaving(100);
2362             return error("ProcessBlock() : block with too little %s", pblock->IsProofOfStake()? "proof-of-stake" : "proof-of-work");
2363         }
2364     }
2365
2366     // ppcoin: ask for pending sync-checkpoint if any
2367     if (!IsInitialBlockDownload())
2368         Checkpoints::AskForPendingSyncCheckpoint(pfrom);
2369
2370     // If don't already have its previous block, shunt it off to holding area until we get it
2371     if (!mapBlockIndex.count(pblock->hashPrevBlock))
2372     {
2373         printf("ProcessBlock: ORPHAN BLOCK, prev=%s\n", pblock->hashPrevBlock.ToString().substr(0,20).c_str());
2374         CBlock* pblock2 = new CBlock(*pblock);
2375         // ppcoin: check proof-of-stake
2376         if (pblock2->IsProofOfStake())
2377         {
2378             // Limited duplicity on stake: prevents block flood attack
2379             // Duplicate stake allowed only when there is orphan child block
2380             if (setStakeSeenOrphan.count(pblock2->GetProofOfStake()) && !mapOrphanBlocksByPrev.count(hash) && !Checkpoints::WantedByPendingSyncCheckpoint(hash))
2381                 return error("ProcessBlock() : duplicate proof-of-stake (%s, %d) for orphan block %s", pblock2->GetProofOfStake().first.ToString().c_str(), pblock2->GetProofOfStake().second, hash.ToString().c_str());
2382             else
2383                 setStakeSeenOrphan.insert(pblock2->GetProofOfStake());
2384         }
2385         mapOrphanBlocks.insert(make_pair(hash, pblock2));
2386         mapOrphanBlocksByPrev.insert(make_pair(pblock2->hashPrevBlock, pblock2));
2387
2388         // Ask this guy to fill in what we're missing
2389         if (pfrom)
2390         {
2391             pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(pblock2));
2392             // ppcoin: getblocks may not obtain the ancestor block rejected
2393             // earlier by duplicate-stake check so we ask for it again directly
2394             if (!IsInitialBlockDownload())
2395                 pfrom->AskFor(CInv(MSG_BLOCK, WantedByOrphan(pblock2)));
2396         }
2397         return true;
2398     }
2399
2400     // Store to disk
2401     if (!pblock->AcceptBlock())
2402         return error("ProcessBlock() : AcceptBlock FAILED");
2403
2404     // Recursively process any orphan blocks that depended on this one
2405     vector<uint256> vWorkQueue;
2406     vWorkQueue.push_back(hash);
2407     for (unsigned int i = 0; i < vWorkQueue.size(); i++)
2408     {
2409         uint256 hashPrev = vWorkQueue[i];
2410         for (multimap<uint256, CBlock*>::iterator mi = mapOrphanBlocksByPrev.lower_bound(hashPrev);
2411              mi != mapOrphanBlocksByPrev.upper_bound(hashPrev);
2412              ++mi)
2413         {
2414             CBlock* pblockOrphan = (*mi).second;
2415             if (pblockOrphan->AcceptBlock())
2416                 vWorkQueue.push_back(pblockOrphan->GetHash());
2417             mapOrphanBlocks.erase(pblockOrphan->GetHash());
2418             setStakeSeenOrphan.erase(pblockOrphan->GetProofOfStake());
2419             delete pblockOrphan;
2420         }
2421         mapOrphanBlocksByPrev.erase(hashPrev);
2422     }
2423
2424     printf("ProcessBlock: ACCEPTED\n");
2425
2426     // ppcoin: if responsible for sync-checkpoint send it
2427     if (pfrom && !CSyncCheckpoint::strMasterPrivKey.empty())
2428         Checkpoints::SendSyncCheckpoint(Checkpoints::AutoSelectSyncCheckpoint());
2429
2430     return true;
2431 }
2432
2433 // ppcoin: sign block
2434 bool CBlock::SignBlock(const CKeyStore& keystore)
2435 {
2436     vector<valtype> vSolutions;
2437     txnouttype whichType;
2438
2439     if(!IsProofOfStake())
2440     {
2441         for(unsigned int i = 0; i < vtx[0].vout.size(); i++)
2442         {
2443             const CTxOut& txout = vtx[0].vout[i];
2444
2445             if (!Solver(txout.scriptPubKey, whichType, vSolutions))
2446                 continue;
2447
2448             if (whichType == TX_PUBKEY)
2449             {
2450                 // Sign
2451                 valtype& vchPubKey = vSolutions[0];
2452                 CKey key;
2453
2454                 if (!keystore.GetKey(Hash160(vchPubKey), key))
2455                     continue;
2456                 if (key.GetPubKey() != vchPubKey)
2457                     continue;
2458                 if(!key.Sign(GetHash(), vchBlockSig))
2459                     continue;
2460
2461                 return true;
2462             }
2463         }
2464     }
2465     else
2466     {
2467         const CTxOut& txout = vtx[1].vout[1];
2468
2469         if (!Solver(txout.scriptPubKey, whichType, vSolutions))
2470             return false;
2471
2472         if (whichType == TX_PUBKEY)
2473         {
2474             // Sign
2475             valtype& vchPubKey = vSolutions[0];
2476             CKey key;
2477
2478             if (!keystore.GetKey(Hash160(vchPubKey), key))
2479                 return false;
2480             if (key.GetPubKey() != vchPubKey)
2481                 return false;
2482
2483             return key.Sign(GetHash(), vchBlockSig);
2484         }
2485     }
2486
2487     printf("Sign failed\n");
2488     return false;
2489 }
2490
2491 // ppcoin: check block signature
2492 bool CBlock::CheckBlockSignature() const
2493 {
2494     if (GetHash() == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet))
2495         return vchBlockSig.empty();
2496
2497     vector<valtype> vSolutions;
2498     txnouttype whichType;
2499
2500     if(IsProofOfStake())
2501     {
2502         const CTxOut& txout = vtx[1].vout[1];
2503
2504         if (!Solver(txout.scriptPubKey, whichType, vSolutions))
2505             return false;
2506         if (whichType == TX_PUBKEY)
2507         {
2508             valtype& vchPubKey = vSolutions[0];
2509             CKey key;
2510             if (!key.SetPubKey(vchPubKey))
2511                 return false;
2512             if (vchBlockSig.empty())
2513                 return false;
2514             return key.Verify(GetHash(), vchBlockSig);
2515         }
2516     }
2517     else
2518     {
2519         for(unsigned int i = 0; i < vtx[0].vout.size(); i++)
2520         {
2521             const CTxOut& txout = vtx[0].vout[i];
2522
2523             if (!Solver(txout.scriptPubKey, whichType, vSolutions))
2524                 return false;
2525
2526             if (whichType == TX_PUBKEY)
2527             {
2528                 // Verify
2529                 valtype& vchPubKey = vSolutions[0];
2530                 CKey key;
2531                 if (!key.SetPubKey(vchPubKey))
2532                     continue;
2533                 if (vchBlockSig.empty())
2534                     continue;
2535                 if(!key.Verify(GetHash(), vchBlockSig))
2536                     continue;
2537
2538                 return true;
2539             }
2540         }
2541     }
2542     return false;
2543 }
2544
2545 bool CheckDiskSpace(uint64 nAdditionalBytes)
2546 {
2547     uint64 nFreeBytesAvailable = filesystem::space(GetDataDir()).available;
2548
2549     // Check for nMinDiskSpace bytes (currently 50MB)
2550     if (nFreeBytesAvailable < nMinDiskSpace + nAdditionalBytes)
2551     {
2552         fShutdown = true;
2553         string strMessage = _("Warning: Disk space is low!");
2554         strMiscWarning = strMessage;
2555         printf("*** %s\n", strMessage.c_str());
2556         uiInterface.ThreadSafeMessageBox(strMessage, "NovaCoin", CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
2557         StartShutdown();
2558         return false;
2559     }
2560     return true;
2561 }
2562
2563 static filesystem::path BlockFilePath(unsigned int nFile)
2564 {
2565     string strBlockFn = strprintf("blk%04u.dat", nFile);
2566     return GetDataDir() / strBlockFn;
2567 }
2568
2569 FILE* OpenBlockFile(unsigned int nFile, unsigned int nBlockPos, const char* pszMode)
2570 {
2571     if ((nFile < 1) || (nFile == (unsigned int) -1))
2572         return NULL;
2573     FILE* file = fopen(BlockFilePath(nFile).string().c_str(), pszMode);
2574     if (!file)
2575         return NULL;
2576     if (nBlockPos != 0 && !strchr(pszMode, 'a') && !strchr(pszMode, 'w'))
2577     {
2578         if (fseek(file, nBlockPos, SEEK_SET) != 0)
2579         {
2580             fclose(file);
2581             return NULL;
2582         }
2583     }
2584     return file;
2585 }
2586
2587 static unsigned int nCurrentBlockFile = 1;
2588
2589 FILE* AppendBlockFile(unsigned int& nFileRet)
2590 {
2591     nFileRet = 0;
2592     loop
2593     {
2594         FILE* file = OpenBlockFile(nCurrentBlockFile, 0, "ab");
2595         if (!file)
2596             return NULL;
2597         if (fseek(file, 0, SEEK_END) != 0)
2598             return NULL;
2599         // FAT32 file size max 4GB, fseek and ftell max 2GB, so we must stay under 2GB
2600         if (ftell(file) < (long)(0x7F000000 - MAX_SIZE))
2601         {
2602             nFileRet = nCurrentBlockFile;
2603             return file;
2604         }
2605         fclose(file);
2606         nCurrentBlockFile++;
2607     }
2608 }
2609
2610 bool LoadBlockIndex(bool fAllowNew)
2611 {
2612     if (fTestNet)
2613     {
2614         pchMessageStart[0] = 0xcd;
2615         pchMessageStart[1] = 0xf2;
2616         pchMessageStart[2] = 0xc0;
2617         pchMessageStart[3] = 0xef;
2618
2619         bnProofOfWorkLimit = bnProofOfWorkLimitTestNet; // 16 bits PoW target limit for testnet
2620         nStakeMinAge = 2 * 60 * 60; // test net min age is 2 hours
2621         nModifierInterval = 20 * 60; // test modifier interval is 20 minutes
2622         nCoinbaseMaturity = 10; // test maturity is 10 blocks
2623         nStakeTargetSpacing = 5 * 60; // test block spacing is 5 minutes
2624     }
2625
2626     //
2627     // Load block index
2628     //
2629     CTxDB txdb("cr");
2630     if (!txdb.LoadBlockIndex())
2631         return false;
2632     txdb.Close();
2633
2634     //
2635     // Init with genesis block
2636     //
2637     if (mapBlockIndex.empty())
2638     {
2639         if (!fAllowNew)
2640             return false;
2641
2642         // Genesis block
2643
2644         // MainNet:
2645
2646         //CBlock(hash=00000a060336cbb72fe969666d337b87198b1add2abaa59cca226820b32933a4, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=4cb33b3b6a861dcbc685d3e614a9cafb945738d6833f182855679f2fad02057b, nTime=1360105017, nBits=1e0fffff, nNonce=1575379, vtx=1, vchBlockSig=)
2647         //  Coinbase(hash=4cb33b3b6a, nTime=1360105017, ver=1, vin.size=1, vout.size=1, nLockTime=0)
2648         //    CTxIn(COutPoint(0000000000, 4294967295), coinbase 04ffff001d020f274468747470733a2f2f626974636f696e74616c6b2e6f72672f696e6465782e7068703f746f7069633d3133343137392e6d736731353032313936236d736731353032313936)
2649         //    CTxOut(empty)
2650         //  vMerkleTree: 4cb33b3b6a
2651
2652         // TestNet:
2653
2654         //CBlock(hash=0000c763e402f2436da9ed36c7286f62c3f6e5dbafce9ff289bd43d7459327eb, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=4cb33b3b6a861dcbc685d3e614a9cafb945738d6833f182855679f2fad02057b, nTime=1360105017, nBits=1f00ffff, nNonce=46534, vtx=1, vchBlockSig=)
2655         //  Coinbase(hash=4cb33b3b6a, nTime=1360105017, ver=1, vin.size=1, vout.size=1, nLockTime=0)
2656         //    CTxIn(COutPoint(0000000000, 4294967295), coinbase 04ffff001d020f274468747470733a2f2f626974636f696e74616c6b2e6f72672f696e6465782e7068703f746f7069633d3133343137392e6d736731353032313936236d736731353032313936)
2657         //    CTxOut(empty)
2658         //  vMerkleTree: 4cb33b3b6a
2659
2660         const char* pszTimestamp = "https://bitcointalk.org/index.php?topic=134179.msg1502196#msg1502196";
2661         CTransaction txNew;
2662         txNew.nTime = 1360105017;
2663         txNew.vin.resize(1);
2664         txNew.vout.resize(1);
2665         txNew.vin[0].scriptSig = CScript() << 486604799 << CBigNum(9999) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
2666         txNew.vout[0].SetEmpty();
2667         CBlock block;
2668         block.vtx.push_back(txNew);
2669         block.hashPrevBlock = 0;
2670         block.hashMerkleRoot = block.BuildMerkleTree();
2671         block.nVersion = 1;
2672         block.nTime    = 1360105017;
2673         block.nBits    = bnProofOfWorkLimit.GetCompact();
2674         block.nNonce   = !fTestNet ? 1575379 : 46534;
2675
2676         //// debug print
2677         assert(block.hashMerkleRoot == uint256("0x4cb33b3b6a861dcbc685d3e614a9cafb945738d6833f182855679f2fad02057b"));
2678         block.print();
2679         assert(block.GetHash() == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet));
2680         assert(block.CheckBlock());
2681
2682         // Start new block file
2683         unsigned int nFile;
2684         unsigned int nBlockPos;
2685         if (!block.WriteToDisk(nFile, nBlockPos))
2686             return error("LoadBlockIndex() : writing genesis block to disk failed");
2687         if (!block.AddToBlockIndex(nFile, nBlockPos))
2688             return error("LoadBlockIndex() : genesis block not accepted");
2689
2690         // ppcoin: initialize synchronized checkpoint
2691         if (!Checkpoints::WriteSyncCheckpoint((!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet)))
2692             return error("LoadBlockIndex() : failed to init sync checkpoint");
2693     }
2694
2695     // ppcoin: if checkpoint master key changed must reset sync-checkpoint
2696     {
2697         CTxDB txdb;
2698         string strPubKey = "";
2699         if (!txdb.ReadCheckpointPubKey(strPubKey) || strPubKey != CSyncCheckpoint::strMasterPubKey)
2700         {
2701             // write checkpoint master key to db
2702             txdb.TxnBegin();
2703             if (!txdb.WriteCheckpointPubKey(CSyncCheckpoint::strMasterPubKey))
2704                 return error("LoadBlockIndex() : failed to write new checkpoint master key to db");
2705             if (!txdb.TxnCommit())
2706                 return error("LoadBlockIndex() : failed to commit new checkpoint master key to db");
2707             if ((!fTestNet) && !Checkpoints::ResetSyncCheckpoint())
2708                 return error("LoadBlockIndex() : failed to reset sync-checkpoint");
2709         }
2710         txdb.Close();
2711     }
2712
2713     return true;
2714 }
2715
2716
2717
2718 void PrintBlockTree()
2719 {
2720     // pre-compute tree structure
2721     map<CBlockIndex*, vector<CBlockIndex*> > mapNext;
2722     for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
2723     {
2724         CBlockIndex* pindex = (*mi).second;
2725         mapNext[pindex->pprev].push_back(pindex);
2726         // test
2727         //while (rand() % 3 == 0)
2728         //    mapNext[pindex->pprev].push_back(pindex);
2729     }
2730
2731     vector<pair<int, CBlockIndex*> > vStack;
2732     vStack.push_back(make_pair(0, pindexGenesisBlock));
2733
2734     int nPrevCol = 0;
2735     while (!vStack.empty())
2736     {
2737         int nCol = vStack.back().first;
2738         CBlockIndex* pindex = vStack.back().second;
2739         vStack.pop_back();
2740
2741         // print split or gap
2742         if (nCol > nPrevCol)
2743         {
2744             for (int i = 0; i < nCol-1; i++)
2745                 printf("| ");
2746             printf("|\\\n");
2747         }
2748         else if (nCol < nPrevCol)
2749         {
2750             for (int i = 0; i < nCol; i++)
2751                 printf("| ");
2752             printf("|\n");
2753        }
2754         nPrevCol = nCol;
2755
2756         // print columns
2757         for (int i = 0; i < nCol; i++)
2758             printf("| ");
2759
2760         // print item
2761         CBlock block;
2762         block.ReadFromDisk(pindex);
2763         printf("%d (%u,%u) %s  %08x  %s  mint %7s  tx %"PRIszu"",
2764             pindex->nHeight,
2765             pindex->nFile,
2766             pindex->nBlockPos,
2767             block.GetHash().ToString().c_str(),
2768             block.nBits,
2769             DateTimeStrFormat("%x %H:%M:%S", block.GetBlockTime()).c_str(),
2770             FormatMoney(pindex->nMint).c_str(),
2771             block.vtx.size());
2772
2773         PrintWallets(block);
2774
2775         // put the main time-chain first
2776         vector<CBlockIndex*>& vNext = mapNext[pindex];
2777         for (unsigned int i = 0; i < vNext.size(); i++)
2778         {
2779             if (vNext[i]->pnext)
2780             {
2781                 swap(vNext[0], vNext[i]);
2782                 break;
2783             }
2784         }
2785
2786         // iterate children
2787         for (unsigned int i = 0; i < vNext.size(); i++)
2788             vStack.push_back(make_pair(nCol+i, vNext[i]));
2789     }
2790 }
2791
2792 bool LoadExternalBlockFile(FILE* fileIn)
2793 {
2794     int64 nStart = GetTimeMillis();
2795
2796     int nLoaded = 0;
2797     {
2798         LOCK(cs_main);
2799         try {
2800             CAutoFile blkdat(fileIn, SER_DISK, CLIENT_VERSION);
2801             unsigned int nPos = 0;
2802             while (nPos != (unsigned int)-1 && blkdat.good() && !fRequestShutdown)
2803             {
2804                 unsigned char pchData[65536];
2805                 do {
2806                     fseek(blkdat, nPos, SEEK_SET);
2807                     int nRead = fread(pchData, 1, sizeof(pchData), blkdat);
2808                     if (nRead <= 8)
2809                     {
2810                         nPos = (unsigned int)-1;
2811                         break;
2812                     }
2813                     void* nFind = memchr(pchData, pchMessageStart[0], nRead+1-sizeof(pchMessageStart));
2814                     if (nFind)
2815                     {
2816                         if (memcmp(nFind, pchMessageStart, sizeof(pchMessageStart))==0)
2817                         {
2818                             nPos += ((unsigned char*)nFind - pchData) + sizeof(pchMessageStart);
2819                             break;
2820                         }
2821                         nPos += ((unsigned char*)nFind - pchData) + 1;
2822                     }
2823                     else
2824                         nPos += sizeof(pchData) - sizeof(pchMessageStart) + 1;
2825                 } while(!fRequestShutdown);
2826                 if (nPos == (unsigned int)-1)
2827                     break;
2828                 fseek(blkdat, nPos, SEEK_SET);
2829                 unsigned int nSize;
2830                 blkdat >> nSize;
2831                 if (nSize > 0 && nSize <= MAX_BLOCK_SIZE)
2832                 {
2833                     CBlock block;
2834                     blkdat >> block;
2835                     if (ProcessBlock(NULL,&block))
2836                     {
2837                         nLoaded++;
2838                         nPos += 4 + nSize;
2839                     }
2840                 }
2841             }
2842         }
2843         catch (std::exception &e) {
2844             printf("%s() : Deserialize or I/O error caught during load\n",
2845                    __PRETTY_FUNCTION__);
2846         }
2847     }
2848     printf("Loaded %i blocks from external file in %"PRI64d"ms\n", nLoaded, GetTimeMillis() - nStart);
2849     return nLoaded > 0;
2850 }
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860 //////////////////////////////////////////////////////////////////////////////
2861 //
2862 // CAlert
2863 //
2864
2865 extern map<uint256, CAlert> mapAlerts;
2866 extern CCriticalSection cs_mapAlerts;
2867
2868 static string strMintMessage = "Info: Minting suspended due to locked wallet.";
2869 static string strMintWarning;
2870
2871 string GetWarnings(string strFor)
2872 {
2873     int nPriority = 0;
2874     string strStatusBar;
2875     string strRPC;
2876
2877     if (GetBoolArg("-testsafemode"))
2878         strRPC = "test";
2879
2880     // ppcoin: wallet lock warning for minting
2881     if (strMintWarning != "")
2882     {
2883         nPriority = 0;
2884         strStatusBar = strMintWarning;
2885     }
2886
2887     // Misc warnings like out of disk space and clock is wrong
2888     if (strMiscWarning != "")
2889     {
2890         nPriority = 1000;
2891         strStatusBar = strMiscWarning;
2892     }
2893
2894     // ppcoin: should not enter safe mode for longer invalid chain
2895     // ppcoin: if sync-checkpoint is too old do not enter safe mode
2896     if (Checkpoints::IsSyncCheckpointTooOld(60 * 60 * 24 * 10) && !fTestNet && !IsInitialBlockDownload())
2897     {
2898         nPriority = 100;
2899         strStatusBar = "WARNING: Checkpoint is too old. Wait for block chain to download, or notify developers.";
2900     }
2901
2902     // ppcoin: if detected invalid checkpoint enter safe mode
2903     if (Checkpoints::hashInvalidCheckpoint != 0)
2904     {
2905         nPriority = 3000;
2906         strStatusBar = strRPC = "WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers.";
2907     }
2908
2909     // Alerts
2910     {
2911         LOCK(cs_mapAlerts);
2912         BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
2913         {
2914             const CAlert& alert = item.second;
2915             if (alert.AppliesToMe() && alert.nPriority > nPriority)
2916             {
2917                 nPriority = alert.nPriority;
2918                 strStatusBar = alert.strStatusBar;
2919                 if (nPriority > 1000)
2920                     strRPC = strStatusBar;  // ppcoin: safe mode for high alert
2921             }
2922         }
2923     }
2924
2925     if (strFor == "statusbar")
2926         return strStatusBar;
2927     else if (strFor == "rpc")
2928         return strRPC;
2929     assert(!"GetWarnings() : invalid parameter");
2930     return "error";
2931 }
2932
2933
2934
2935
2936
2937
2938
2939
2940 //////////////////////////////////////////////////////////////////////////////
2941 //
2942 // Messages
2943 //
2944
2945
2946 bool static AlreadyHave(CTxDB& txdb, const CInv& inv)
2947 {
2948     switch (inv.type)
2949     {
2950     case MSG_TX:
2951         {
2952         bool txInMap = false;
2953             {
2954             LOCK(mempool.cs);
2955             txInMap = (mempool.exists(inv.hash));
2956             }
2957         return txInMap ||
2958                mapOrphanTransactions.count(inv.hash) ||
2959                txdb.ContainsTx(inv.hash);
2960         }
2961
2962     case MSG_BLOCK:
2963         return mapBlockIndex.count(inv.hash) ||
2964                mapOrphanBlocks.count(inv.hash);
2965     }
2966     // Don't know what it is, just say we already got one
2967     return true;
2968 }
2969
2970
2971
2972
2973 // The message start string is designed to be unlikely to occur in normal data.
2974 // The characters are rarely used upper ASCII, not valid as UTF-8, and produce
2975 // a large 4-byte int at any alignment.
2976 unsigned char pchMessageStart[4] = { 0xe4, 0xe8, 0xe9, 0xe5 };
2977
2978 bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
2979 {
2980     static map<CService, CPubKey> mapReuseKey;
2981     RandAddSeedPerfmon();
2982     if (fDebug)
2983         printf("received: %s (%"PRIszu" bytes)\n", strCommand.c_str(), vRecv.size());
2984     if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0)
2985     {
2986         printf("dropmessagestest DROPPING RECV MESSAGE\n");
2987         return true;
2988     }
2989
2990
2991
2992
2993
2994     if (strCommand == "version")
2995     {
2996         // Each connection can only send one version message
2997         if (pfrom->nVersion != 0)
2998         {
2999             pfrom->Misbehaving(1);
3000             return false;
3001         }
3002
3003         int64 nTime;
3004         CAddress addrMe;
3005         CAddress addrFrom;
3006         uint64 nNonce = 1;
3007         vRecv >> pfrom->nVersion >> pfrom->nServices >> nTime >> addrMe;
3008         if (pfrom->nVersion < MIN_PROTO_VERSION)
3009         {
3010             // Since February 20, 2012, the protocol is initiated at version 209,
3011             // and earlier versions are no longer supported
3012             printf("partner %s using obsolete version %i; disconnecting\n", pfrom->addr.ToString().c_str(), pfrom->nVersion);
3013             pfrom->fDisconnect = true;
3014             return false;
3015         }
3016
3017         if (pfrom->nVersion == 10300)
3018             pfrom->nVersion = 300;
3019         if (!vRecv.empty())
3020             vRecv >> addrFrom >> nNonce;
3021         if (!vRecv.empty())
3022             vRecv >> pfrom->strSubVer;
3023         if (!vRecv.empty())
3024             vRecv >> pfrom->nStartingHeight;
3025
3026         if (pfrom->fInbound && addrMe.IsRoutable())
3027         {
3028             pfrom->addrLocal = addrMe;
3029             SeenLocal(addrMe);
3030         }
3031
3032         // Disconnect if we connected to ourself
3033         if (nNonce == nLocalHostNonce && nNonce > 1)
3034         {
3035             printf("connected to self at %s, disconnecting\n", pfrom->addr.ToString().c_str());
3036             pfrom->fDisconnect = true;
3037             return true;
3038         }
3039
3040         // ppcoin: record my external IP reported by peer
3041         if (addrFrom.IsRoutable() && addrMe.IsRoutable())
3042             addrSeenByPeer = addrMe;
3043
3044         // Be shy and don't send version until we hear
3045         if (pfrom->fInbound)
3046             pfrom->PushVersion();
3047
3048         pfrom->fClient = !(pfrom->nServices & NODE_NETWORK);
3049
3050         AddTimeData(pfrom->addr, nTime);
3051
3052         // Change version
3053         pfrom->PushMessage("verack");
3054         pfrom->vSend.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
3055
3056         if (!pfrom->fInbound)
3057         {
3058             // Advertise our address
3059             if (!fNoListen && !IsInitialBlockDownload())
3060             {
3061                 CAddress addr = GetLocalAddress(&pfrom->addr);
3062                 if (addr.IsRoutable())
3063                     pfrom->PushAddress(addr);
3064             }
3065
3066             // Get recent addresses
3067             if (pfrom->fOneShot || pfrom->nVersion >= CADDR_TIME_VERSION || addrman.size() < 1000)
3068             {
3069                 pfrom->PushMessage("getaddr");
3070                 pfrom->fGetAddr = true;
3071             }
3072             addrman.Good(pfrom->addr);
3073         } else {
3074             if (((CNetAddr)pfrom->addr) == (CNetAddr)addrFrom)
3075             {
3076                 addrman.Add(addrFrom, addrFrom);
3077                 addrman.Good(addrFrom);
3078             }
3079         }
3080
3081         // Ask the first connected node for block updates
3082         static int nAskedForBlocks = 0;
3083         if (!pfrom->fClient && !pfrom->fOneShot &&
3084             (pfrom->nStartingHeight > (nBestHeight - 144)) &&
3085             (pfrom->nVersion < NOBLKS_VERSION_START ||
3086              pfrom->nVersion >= NOBLKS_VERSION_END) &&
3087              (nAskedForBlocks < 1 || vNodes.size() <= 1))
3088         {
3089             nAskedForBlocks++;
3090             pfrom->PushGetBlocks(pindexBest, uint256(0));
3091         }
3092
3093         // Relay alerts
3094         {
3095             LOCK(cs_mapAlerts);
3096             BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
3097                 item.second.RelayTo(pfrom);
3098         }
3099
3100         // ppcoin: relay sync-checkpoint
3101         {
3102             LOCK(Checkpoints::cs_hashSyncCheckpoint);
3103             if (!Checkpoints::checkpointMessage.IsNull())
3104                 Checkpoints::checkpointMessage.RelayTo(pfrom);
3105         }
3106
3107         pfrom->fSuccessfullyConnected = true;
3108
3109         printf("receive version message: version %d, blocks=%d, us=%s, them=%s, peer=%s\n", pfrom->nVersion, pfrom->nStartingHeight, addrMe.ToString().c_str(), addrFrom.ToString().c_str(), pfrom->addr.ToString().c_str());
3110
3111         cPeerBlockCounts.input(pfrom->nStartingHeight);
3112
3113         // ppcoin: ask for pending sync-checkpoint if any
3114         if (!IsInitialBlockDownload())
3115             Checkpoints::AskForPendingSyncCheckpoint(pfrom);
3116     }
3117
3118
3119     else if (pfrom->nVersion == 0)
3120     {
3121         // Must have a version message before anything else
3122         pfrom->Misbehaving(1);
3123         return false;
3124     }
3125
3126
3127     else if (strCommand == "verack")
3128     {
3129         pfrom->vRecv.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
3130     }
3131
3132
3133     else if (strCommand == "addr")
3134     {
3135         vector<CAddress> vAddr;
3136         vRecv >> vAddr;
3137
3138         // Don't want addr from older versions unless seeding
3139         if (pfrom->nVersion < CADDR_TIME_VERSION && addrman.size() > 1000)
3140             return true;
3141         if (vAddr.size() > 1000)
3142         {
3143             pfrom->Misbehaving(20);
3144             return error("message addr size() = %"PRIszu"", vAddr.size());
3145         }
3146
3147         // Store the new addresses
3148         vector<CAddress> vAddrOk;
3149         int64 nNow = GetAdjustedTime();
3150         int64 nSince = nNow - 10 * 60;
3151         BOOST_FOREACH(CAddress& addr, vAddr)
3152         {
3153             if (fShutdown)
3154                 return true;
3155             if (addr.nTime <= 100000000 || addr.nTime > nNow + 10 * 60)
3156                 addr.nTime = nNow - 5 * 24 * 60 * 60;
3157             pfrom->AddAddressKnown(addr);
3158             bool fReachable = IsReachable(addr);
3159             if (addr.nTime > nSince && !pfrom->fGetAddr && vAddr.size() <= 10 && addr.IsRoutable())
3160             {
3161                 // Relay to a limited number of other nodes
3162                 {
3163                     LOCK(cs_vNodes);
3164                     // Use deterministic randomness to send to the same nodes for 24 hours
3165                     // at a time so the setAddrKnowns of the chosen nodes prevent repeats
3166                     static uint256 hashSalt;
3167                     if (hashSalt == 0)
3168                         hashSalt = GetRandHash();
3169                     uint64 hashAddr = addr.GetHash();
3170                     uint256 hashRand = hashSalt ^ (hashAddr<<32) ^ ((GetTime()+hashAddr)/(24*60*60));
3171                     hashRand = Hash(BEGIN(hashRand), END(hashRand));
3172                     multimap<uint256, CNode*> mapMix;
3173                     BOOST_FOREACH(CNode* pnode, vNodes)
3174                     {
3175                         if (pnode->nVersion < CADDR_TIME_VERSION)
3176                             continue;
3177                         unsigned int nPointer;
3178                         memcpy(&nPointer, &pnode, sizeof(nPointer));
3179                         uint256 hashKey = hashRand ^ nPointer;
3180                         hashKey = Hash(BEGIN(hashKey), END(hashKey));
3181                         mapMix.insert(make_pair(hashKey, pnode));
3182                     }
3183                     int nRelayNodes = fReachable ? 2 : 1; // limited relaying of addresses outside our network(s)
3184                     for (multimap<uint256, CNode*>::iterator mi = mapMix.begin(); mi != mapMix.end() && nRelayNodes-- > 0; ++mi)
3185                         ((*mi).second)->PushAddress(addr);
3186                 }
3187             }
3188             // Do not store addresses outside our network
3189             if (fReachable)
3190                 vAddrOk.push_back(addr);
3191         }
3192         addrman.Add(vAddrOk, pfrom->addr, 2 * 60 * 60);
3193         if (vAddr.size() < 1000)
3194             pfrom->fGetAddr = false;
3195         if (pfrom->fOneShot)
3196             pfrom->fDisconnect = true;
3197     }
3198
3199
3200     else if (strCommand == "inv")
3201     {
3202         vector<CInv> vInv;
3203         vRecv >> vInv;
3204         if (vInv.size() > MAX_INV_SZ)
3205         {
3206             pfrom->Misbehaving(20);
3207             return error("message inv size() = %"PRIszu"", vInv.size());
3208         }
3209
3210         // find last block in inv vector
3211         unsigned int nLastBlock = (unsigned int)(-1);
3212         for (unsigned int nInv = 0; nInv < vInv.size(); nInv++) {
3213             if (vInv[vInv.size() - 1 - nInv].type == MSG_BLOCK) {
3214                 nLastBlock = vInv.size() - 1 - nInv;
3215                 break;
3216             }
3217         }
3218         CTxDB txdb("r");
3219         for (unsigned int nInv = 0; nInv < vInv.size(); nInv++)
3220         {
3221             const CInv &inv = vInv[nInv];
3222
3223             if (fShutdown)
3224                 return true;
3225             pfrom->AddInventoryKnown(inv);
3226
3227             bool fAlreadyHave = AlreadyHave(txdb, inv);
3228             if (fDebug)
3229                 printf("  got inventory: %s  %s\n", inv.ToString().c_str(), fAlreadyHave ? "have" : "new");
3230
3231             if (!fAlreadyHave)
3232                 pfrom->AskFor(inv);
3233             else if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash)) {
3234                 pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(mapOrphanBlocks[inv.hash]));
3235             } else if (nInv == nLastBlock) {
3236                 // In case we are on a very long side-chain, it is possible that we already have
3237                 // the last block in an inv bundle sent in response to getblocks. Try to detect
3238                 // this situation and push another getblocks to continue.
3239                 pfrom->PushGetBlocks(mapBlockIndex[inv.hash], uint256(0));
3240                 if (fDebug)
3241                     printf("force request: %s\n", inv.ToString().c_str());
3242             }
3243
3244             // Track requests for our stuff
3245             Inventory(inv.hash);
3246         }
3247     }
3248
3249
3250     else if (strCommand == "getdata")
3251     {
3252         vector<CInv> vInv;
3253         vRecv >> vInv;
3254         if (vInv.size() > MAX_INV_SZ)
3255         {
3256             pfrom->Misbehaving(20);
3257             return error("message getdata size() = %"PRIszu"", vInv.size());
3258         }
3259
3260         if (fDebugNet || (vInv.size() != 1))
3261             printf("received getdata (%"PRIszu" invsz)\n", vInv.size());
3262
3263         BOOST_FOREACH(const CInv& inv, vInv)
3264         {
3265             if (fShutdown)
3266                 return true;
3267             if (fDebugNet || (vInv.size() == 1))
3268                 printf("received getdata for: %s\n", inv.ToString().c_str());
3269
3270             if (inv.type == MSG_BLOCK)
3271             {
3272                 // Send block from disk
3273                 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(inv.hash);
3274                 if (mi != mapBlockIndex.end())
3275                 {
3276                     CBlock block;
3277                     block.ReadFromDisk((*mi).second);
3278                     pfrom->PushMessage("block", block);
3279
3280                     // Trigger them to send a getblocks request for the next batch of inventory
3281                     if (inv.hash == pfrom->hashContinue)
3282                     {
3283                         // ppcoin: send latest proof-of-work block to allow the
3284                         // download node to accept as orphan (proof-of-stake 
3285                         // block might be rejected by stake connection check)
3286                         vector<CInv> vInv;
3287                         vInv.push_back(CInv(MSG_BLOCK, GetLastBlockIndex(pindexBest, false)->GetBlockHash()));
3288                         pfrom->PushMessage("inv", vInv);
3289                         pfrom->hashContinue = 0;
3290                     }
3291                 }
3292             }
3293             else if (inv.IsKnownType())
3294             {
3295                 // Send stream from relay memory
3296                 bool pushed = false;
3297                 {
3298                     LOCK(cs_mapRelay);
3299                     map<CInv, CDataStream>::iterator mi = mapRelay.find(inv);
3300                     if (mi != mapRelay.end()) {
3301                         pfrom->PushMessage(inv.GetCommand(), (*mi).second);
3302                         pushed = true;
3303                     }
3304                 }
3305                 if (!pushed && inv.type == MSG_TX) {
3306                     LOCK(mempool.cs);
3307                     if (mempool.exists(inv.hash)) {
3308                         CTransaction tx = mempool.lookup(inv.hash);
3309                         CDataStream ss(SER_NETWORK, PROTOCOL_VERSION);
3310                         ss.reserve(1000);
3311                         ss << tx;
3312                         pfrom->PushMessage("tx", ss);
3313                     }
3314                 }
3315             }
3316
3317             // Track requests for our stuff
3318             Inventory(inv.hash);
3319         }
3320     }
3321
3322
3323     else if (strCommand == "getblocks")
3324     {
3325         CBlockLocator locator;
3326         uint256 hashStop;
3327         vRecv >> locator >> hashStop;
3328
3329         // Find the last block the caller has in the main chain
3330         CBlockIndex* pindex = locator.GetBlockIndex();
3331
3332         // Send the rest of the chain
3333         if (pindex)
3334             pindex = pindex->pnext;
3335         int nLimit = 500;
3336         printf("getblocks %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit);
3337         for (; pindex; pindex = pindex->pnext)
3338         {
3339             if (pindex->GetBlockHash() == hashStop)
3340             {
3341                 printf("  getblocks stopping at %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str());
3342                 // ppcoin: tell downloading node about the latest block if it's
3343                 // without risk being rejected due to stake connection check
3344                 if (hashStop != hashBestChain && pindex->GetBlockTime() + nStakeMinAge > pindexBest->GetBlockTime())
3345                     pfrom->PushInventory(CInv(MSG_BLOCK, hashBestChain));
3346                 break;
3347             }
3348             pfrom->PushInventory(CInv(MSG_BLOCK, pindex->GetBlockHash()));
3349             if (--nLimit <= 0)
3350             {
3351                 // When this block is requested, we'll send an inv that'll make them
3352                 // getblocks the next batch of inventory.
3353                 printf("  getblocks stopping at limit %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str());
3354                 pfrom->hashContinue = pindex->GetBlockHash();
3355                 break;
3356             }
3357         }
3358     }
3359     else if (strCommand == "checkpoint")
3360     {
3361         CSyncCheckpoint checkpoint;
3362         vRecv >> checkpoint;
3363
3364         if (checkpoint.ProcessSyncCheckpoint(pfrom))
3365         {
3366             // Relay
3367             pfrom->hashCheckpointKnown = checkpoint.hashCheckpoint;
3368             LOCK(cs_vNodes);
3369             BOOST_FOREACH(CNode* pnode, vNodes)
3370                 checkpoint.RelayTo(pnode);
3371         }
3372     }
3373
3374     else if (strCommand == "getheaders")
3375     {
3376         CBlockLocator locator;
3377         uint256 hashStop;
3378         vRecv >> locator >> hashStop;
3379
3380         CBlockIndex* pindex = NULL;
3381         if (locator.IsNull())
3382         {
3383             // If locator is null, return the hashStop block
3384             map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashStop);
3385             if (mi == mapBlockIndex.end())
3386                 return true;
3387             pindex = (*mi).second;
3388         }
3389         else
3390         {
3391             // Find the last block the caller has in the main chain
3392             pindex = locator.GetBlockIndex();
3393             if (pindex)
3394                 pindex = pindex->pnext;
3395         }
3396
3397         vector<CBlock> vHeaders;
3398         int nLimit = 2000;
3399         printf("getheaders %d to %s\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str());
3400         for (; pindex; pindex = pindex->pnext)
3401         {
3402             vHeaders.push_back(pindex->GetBlockHeader());
3403             if (--nLimit <= 0 || pindex->GetBlockHash() == hashStop)
3404                 break;
3405         }
3406         pfrom->PushMessage("headers", vHeaders);
3407     }
3408
3409
3410     else if (strCommand == "tx")
3411     {
3412         vector<uint256> vWorkQueue;
3413         vector<uint256> vEraseQueue;
3414         CDataStream vMsg(vRecv);
3415         CTxDB txdb("r");
3416         CTransaction tx;
3417         vRecv >> tx;
3418
3419         CInv inv(MSG_TX, tx.GetHash());
3420         pfrom->AddInventoryKnown(inv);
3421
3422         bool fMissingInputs = false;
3423         if (tx.AcceptToMemoryPool(txdb, true, &fMissingInputs))
3424         {
3425             SyncWithWallets(tx, NULL, true);
3426             RelayMessage(inv, vMsg);
3427             mapAlreadyAskedFor.erase(inv);
3428             vWorkQueue.push_back(inv.hash);
3429             vEraseQueue.push_back(inv.hash);
3430
3431             // Recursively process any orphan transactions that depended on this one
3432             for (unsigned int i = 0; i < vWorkQueue.size(); i++)
3433             {
3434                 uint256 hashPrev = vWorkQueue[i];
3435                 for (map<uint256, CDataStream*>::iterator mi = mapOrphanTransactionsByPrev[hashPrev].begin();
3436                      mi != mapOrphanTransactionsByPrev[hashPrev].end();
3437                      ++mi)
3438                 {
3439                     const CDataStream& vMsg = *((*mi).second);
3440                     CTransaction tx;
3441                     CDataStream(vMsg) >> tx;
3442                     CInv inv(MSG_TX, tx.GetHash());
3443                     bool fMissingInputs2 = false;
3444
3445                     if (tx.AcceptToMemoryPool(txdb, true, &fMissingInputs2))
3446                     {
3447                         printf("   accepted orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str());
3448                         SyncWithWallets(tx, NULL, true);
3449                         RelayMessage(inv, vMsg);
3450                         mapAlreadyAskedFor.erase(inv);
3451                         vWorkQueue.push_back(inv.hash);
3452                         vEraseQueue.push_back(inv.hash);
3453                     }
3454                     else if (!fMissingInputs2)
3455                     {
3456                         // invalid orphan
3457                         vEraseQueue.push_back(inv.hash);
3458                         printf("   removed invalid orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str());
3459                     }
3460                 }
3461             }
3462
3463             BOOST_FOREACH(uint256 hash, vEraseQueue)
3464                 EraseOrphanTx(hash);
3465         }
3466         else if (fMissingInputs)
3467         {
3468             AddOrphanTx(vMsg);
3469
3470             // DoS prevention: do not allow mapOrphanTransactions to grow unbounded
3471             unsigned int nEvicted = LimitOrphanTxSize(MAX_ORPHAN_TRANSACTIONS);
3472             if (nEvicted > 0)
3473                 printf("mapOrphan overflow, removed %u tx\n", nEvicted);
3474         }
3475         if (tx.nDoS) pfrom->Misbehaving(tx.nDoS);
3476     }
3477
3478
3479     else if (strCommand == "block")
3480     {
3481         CBlock block;
3482         vRecv >> block;
3483
3484         printf("received block %s\n", block.GetHash().ToString().substr(0,20).c_str());
3485         // block.print();
3486
3487         CInv inv(MSG_BLOCK, block.GetHash());
3488         pfrom->AddInventoryKnown(inv);
3489
3490         if (ProcessBlock(pfrom, &block))
3491             mapAlreadyAskedFor.erase(inv);
3492         if (block.nDoS) pfrom->Misbehaving(block.nDoS);
3493     }
3494
3495
3496     else if (strCommand == "getaddr")
3497     {
3498         pfrom->vAddrToSend.clear();
3499         vector<CAddress> vAddr = addrman.GetAddr();
3500         BOOST_FOREACH(const CAddress &addr, vAddr)
3501             pfrom->PushAddress(addr);
3502     }
3503
3504
3505     else if (strCommand == "mempool")
3506     {
3507         std::vector<uint256> vtxid;
3508         mempool.queryHashes(vtxid);
3509         vector<CInv> vInv;
3510         for (unsigned int i = 0; i < vtxid.size(); i++) {
3511             CInv inv(MSG_TX, vtxid[i]);
3512             vInv.push_back(inv);
3513             if (i == (MAX_INV_SZ - 1))
3514                     break;
3515         }
3516         if (vInv.size() > 0)
3517             pfrom->PushMessage("inv", vInv);
3518     }
3519
3520
3521     else if (strCommand == "checkorder")
3522     {
3523         uint256 hashReply;
3524         vRecv >> hashReply;
3525
3526         if (!GetBoolArg("-allowreceivebyip"))
3527         {
3528             pfrom->PushMessage("reply", hashReply, (int)2, string(""));
3529             return true;
3530         }
3531
3532         CWalletTx order;
3533         vRecv >> order;
3534
3535         /// we have a chance to check the order here
3536
3537         // Keep giving the same key to the same ip until they use it
3538         if (!mapReuseKey.count(pfrom->addr))
3539             pwalletMain->GetKeyFromPool(mapReuseKey[pfrom->addr], true);
3540
3541         // Send back approval of order and pubkey to use
3542         CScript scriptPubKey;
3543         scriptPubKey << mapReuseKey[pfrom->addr] << OP_CHECKSIG;
3544         pfrom->PushMessage("reply", hashReply, (int)0, scriptPubKey);
3545     }
3546
3547
3548     else if (strCommand == "reply")
3549     {
3550         uint256 hashReply;
3551         vRecv >> hashReply;
3552
3553         CRequestTracker tracker;
3554         {
3555             LOCK(pfrom->cs_mapRequests);
3556             map<uint256, CRequestTracker>::iterator mi = pfrom->mapRequests.find(hashReply);
3557             if (mi != pfrom->mapRequests.end())
3558             {
3559                 tracker = (*mi).second;
3560                 pfrom->mapRequests.erase(mi);
3561             }
3562         }
3563         if (!tracker.IsNull())
3564             tracker.fn(tracker.param1, vRecv);
3565     }
3566
3567
3568     else if (strCommand == "ping")
3569     {
3570         if (pfrom->nVersion > BIP0031_VERSION)
3571         {
3572             uint64 nonce = 0;
3573             vRecv >> nonce;
3574             // Echo the message back with the nonce. This allows for two useful features:
3575             //
3576             // 1) A remote node can quickly check if the connection is operational
3577             // 2) Remote nodes can measure the latency of the network thread. If this node
3578             //    is overloaded it won't respond to pings quickly and the remote node can
3579             //    avoid sending us more work, like chain download requests.
3580             //
3581             // The nonce stops the remote getting confused between different pings: without
3582             // it, if the remote node sends a ping once per second and this node takes 5
3583             // seconds to respond to each, the 5th ping the remote sends would appear to
3584             // return very quickly.
3585             pfrom->PushMessage("pong", nonce);
3586         }
3587     }
3588
3589
3590     else if (strCommand == "alert")
3591     {
3592         CAlert alert;
3593         vRecv >> alert;
3594
3595         uint256 alertHash = alert.GetHash();
3596         if (pfrom->setKnown.count(alertHash) == 0)
3597         {
3598             if (alert.ProcessAlert())
3599             {
3600                 // Relay
3601                 pfrom->setKnown.insert(alertHash);
3602                 {
3603                     LOCK(cs_vNodes);
3604                     BOOST_FOREACH(CNode* pnode, vNodes)
3605                         alert.RelayTo(pnode);
3606                 }
3607             }
3608             else {
3609                 // Small DoS penalty so peers that send us lots of
3610                 // duplicate/expired/invalid-signature/whatever alerts
3611                 // eventually get banned.
3612                 // This isn't a Misbehaving(100) (immediate ban) because the
3613                 // peer might be an older or different implementation with
3614                 // a different signature key, etc.
3615                 pfrom->Misbehaving(10);
3616             }
3617         }
3618     }
3619
3620
3621     else
3622     {
3623         // Ignore unknown commands for extensibility
3624     }
3625
3626
3627     // Update the last seen time for this node's address
3628     if (pfrom->fNetworkNode)
3629         if (strCommand == "version" || strCommand == "addr" || strCommand == "inv" || strCommand == "getdata" || strCommand == "ping")
3630             AddressCurrentlyConnected(pfrom->addr);
3631
3632
3633     return true;
3634 }
3635
3636 bool ProcessMessages(CNode* pfrom)
3637 {
3638     CDataStream& vRecv = pfrom->vRecv;
3639     if (vRecv.empty())
3640         return true;
3641     //if (fDebug)
3642     //    printf("ProcessMessages(%u bytes)\n", vRecv.size());
3643
3644     //
3645     // Message format
3646     //  (4) message start
3647     //  (12) command
3648     //  (4) size
3649     //  (4) checksum
3650     //  (x) data
3651     //
3652
3653     loop
3654     {
3655         // Don't bother if send buffer is too full to respond anyway
3656         if (pfrom->vSend.size() >= SendBufferSize())
3657             break;
3658
3659         // Scan for message start
3660         CDataStream::iterator pstart = search(vRecv.begin(), vRecv.end(), BEGIN(pchMessageStart), END(pchMessageStart));
3661         int nHeaderSize = vRecv.GetSerializeSize(CMessageHeader());
3662         if (vRecv.end() - pstart < nHeaderSize)
3663         {
3664             if ((int)vRecv.size() > nHeaderSize)
3665             {
3666                 printf("\n\nPROCESSMESSAGE MESSAGESTART NOT FOUND\n\n");
3667                 vRecv.erase(vRecv.begin(), vRecv.end() - nHeaderSize);
3668             }
3669             break;
3670         }
3671         if (pstart - vRecv.begin() > 0)
3672             printf("\n\nPROCESSMESSAGE SKIPPED %"PRIpdd" BYTES\n\n", pstart - vRecv.begin());
3673         vRecv.erase(vRecv.begin(), pstart);
3674
3675         // Read header
3676         vector<char> vHeaderSave(vRecv.begin(), vRecv.begin() + nHeaderSize);
3677         CMessageHeader hdr;
3678         vRecv >> hdr;
3679         if (!hdr.IsValid())
3680         {
3681             printf("\n\nPROCESSMESSAGE: ERRORS IN HEADER %s\n\n\n", hdr.GetCommand().c_str());
3682             continue;
3683         }
3684         string strCommand = hdr.GetCommand();
3685
3686         // Message size
3687         unsigned int nMessageSize = hdr.nMessageSize;
3688         if (nMessageSize > MAX_SIZE)
3689         {
3690             printf("ProcessMessages(%s, %u bytes) : nMessageSize > MAX_SIZE\n", strCommand.c_str(), nMessageSize);
3691             continue;
3692         }
3693         if (nMessageSize > vRecv.size())
3694         {
3695             // Rewind and wait for rest of message
3696             vRecv.insert(vRecv.begin(), vHeaderSave.begin(), vHeaderSave.end());
3697             break;
3698         }
3699
3700         // Checksum
3701         uint256 hash = Hash(vRecv.begin(), vRecv.begin() + nMessageSize);
3702         unsigned int nChecksum = 0;
3703         memcpy(&nChecksum, &hash, sizeof(nChecksum));
3704         if (nChecksum != hdr.nChecksum)
3705         {
3706             printf("ProcessMessages(%s, %u bytes) : CHECKSUM ERROR nChecksum=%08x hdr.nChecksum=%08x\n",
3707                strCommand.c_str(), nMessageSize, nChecksum, hdr.nChecksum);
3708             continue;
3709         }
3710
3711         // Copy message to its own buffer
3712         CDataStream vMsg(vRecv.begin(), vRecv.begin() + nMessageSize, vRecv.nType, vRecv.nVersion);
3713         vRecv.ignore(nMessageSize);
3714
3715         // Process message
3716         bool fRet = false;
3717         try
3718         {
3719             {
3720                 LOCK(cs_main);
3721                 fRet = ProcessMessage(pfrom, strCommand, vMsg);
3722             }
3723             if (fShutdown)
3724                 return true;
3725         }
3726         catch (std::ios_base::failure& e)
3727         {
3728             if (strstr(e.what(), "end of data"))
3729             {
3730                 // Allow exceptions from under-length message on vRecv
3731                 printf("ProcessMessages(%s, %u bytes) : Exception '%s' caught, normally caused by a message being shorter than its stated length\n", strCommand.c_str(), nMessageSize, e.what());
3732             }
3733             else if (strstr(e.what(), "size too large"))
3734             {
3735                 // Allow exceptions from over-long size
3736                 printf("ProcessMessages(%s, %u bytes) : Exception '%s' caught\n", strCommand.c_str(), nMessageSize, e.what());
3737             }
3738             else
3739             {
3740                 PrintExceptionContinue(&e, "ProcessMessages()");
3741             }
3742         }
3743         catch (std::exception& e) {
3744             PrintExceptionContinue(&e, "ProcessMessages()");
3745         } catch (...) {
3746             PrintExceptionContinue(NULL, "ProcessMessages()");
3747         }
3748
3749         if (!fRet)
3750             printf("ProcessMessage(%s, %u bytes) FAILED\n", strCommand.c_str(), nMessageSize);
3751     }
3752
3753     vRecv.Compact();
3754     return true;
3755 }
3756
3757
3758 bool SendMessages(CNode* pto, bool fSendTrickle)
3759 {
3760     TRY_LOCK(cs_main, lockMain);
3761     if (lockMain) {
3762         // Don't send anything until we get their version message
3763         if (pto->nVersion == 0)
3764             return true;
3765
3766         // Keep-alive ping. We send a nonce of zero because we don't use it anywhere
3767         // right now.
3768         if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSend.empty()) {
3769             uint64 nonce = 0;
3770             if (pto->nVersion > BIP0031_VERSION)
3771                 pto->PushMessage("ping", nonce);
3772             else
3773                 pto->PushMessage("ping");
3774         }
3775
3776         // Resend wallet transactions that haven't gotten in a block yet
3777         ResendWalletTransactions();
3778
3779         // Address refresh broadcast
3780         static int64 nLastRebroadcast;
3781         if (!IsInitialBlockDownload() && (GetTime() - nLastRebroadcast > 24 * 60 * 60))
3782         {
3783             {
3784                 LOCK(cs_vNodes);
3785                 BOOST_FOREACH(CNode* pnode, vNodes)
3786                 {
3787                     // Periodically clear setAddrKnown to allow refresh broadcasts
3788                     if (nLastRebroadcast)
3789                         pnode->setAddrKnown.clear();
3790
3791                     // Rebroadcast our address
3792                     if (!fNoListen)
3793                     {
3794                         CAddress addr = GetLocalAddress(&pnode->addr);
3795                         if (addr.IsRoutable())
3796                             pnode->PushAddress(addr);
3797                     }
3798                 }
3799             }
3800             nLastRebroadcast = GetTime();
3801         }
3802
3803         //
3804         // Message: addr
3805         //
3806         if (fSendTrickle)
3807         {
3808             vector<CAddress> vAddr;
3809             vAddr.reserve(pto->vAddrToSend.size());
3810             BOOST_FOREACH(const CAddress& addr, pto->vAddrToSend)
3811             {
3812                 // returns true if wasn't already contained in the set
3813                 if (pto->setAddrKnown.insert(addr).second)
3814                 {
3815                     vAddr.push_back(addr);
3816                     // receiver rejects addr messages larger than 1000
3817                     if (vAddr.size() >= 1000)
3818                     {
3819                         pto->PushMessage("addr", vAddr);
3820                         vAddr.clear();
3821                     }
3822                 }
3823             }
3824             pto->vAddrToSend.clear();
3825             if (!vAddr.empty())
3826                 pto->PushMessage("addr", vAddr);
3827         }
3828
3829
3830         //
3831         // Message: inventory
3832         //
3833         vector<CInv> vInv;
3834         vector<CInv> vInvWait;
3835         {
3836             LOCK(pto->cs_inventory);
3837             vInv.reserve(pto->vInventoryToSend.size());
3838             vInvWait.reserve(pto->vInventoryToSend.size());
3839             BOOST_FOREACH(const CInv& inv, pto->vInventoryToSend)
3840             {
3841                 if (pto->setInventoryKnown.count(inv))
3842                     continue;
3843
3844                 // trickle out tx inv to protect privacy
3845                 if (inv.type == MSG_TX && !fSendTrickle)
3846                 {
3847                     // 1/4 of tx invs blast to all immediately
3848                     static uint256 hashSalt;
3849                     if (hashSalt == 0)
3850                         hashSalt = GetRandHash();
3851                     uint256 hashRand = inv.hash ^ hashSalt;
3852                     hashRand = Hash(BEGIN(hashRand), END(hashRand));
3853                     bool fTrickleWait = ((hashRand & 3) != 0);
3854
3855                     // always trickle our own transactions
3856                     if (!fTrickleWait)
3857                     {
3858                         CWalletTx wtx;
3859                         if (GetTransaction(inv.hash, wtx))
3860                             if (wtx.fFromMe)
3861                                 fTrickleWait = true;
3862                     }
3863
3864                     if (fTrickleWait)
3865                     {
3866                         vInvWait.push_back(inv);
3867                         continue;
3868                     }
3869                 }
3870
3871                 // returns true if wasn't already contained in the set
3872                 if (pto->setInventoryKnown.insert(inv).second)
3873                 {
3874                     vInv.push_back(inv);
3875                     if (vInv.size() >= 1000)
3876                     {
3877                         pto->PushMessage("inv", vInv);
3878                         vInv.clear();
3879                     }
3880                 }
3881             }
3882             pto->vInventoryToSend = vInvWait;
3883         }
3884         if (!vInv.empty())
3885             pto->PushMessage("inv", vInv);
3886
3887
3888         //
3889         // Message: getdata
3890         //
3891         vector<CInv> vGetData;
3892         int64 nNow = GetTime() * 1000000;
3893         CTxDB txdb("r");
3894         while (!pto->mapAskFor.empty() && (*pto->mapAskFor.begin()).first <= nNow)
3895         {
3896             const CInv& inv = (*pto->mapAskFor.begin()).second;
3897             if (!AlreadyHave(txdb, inv))
3898             {
3899                 if (fDebugNet)
3900                     printf("sending getdata: %s\n", inv.ToString().c_str());
3901                 vGetData.push_back(inv);
3902                 if (vGetData.size() >= 1000)
3903                 {
3904                     pto->PushMessage("getdata", vGetData);
3905                     vGetData.clear();
3906                 }
3907                 mapAlreadyAskedFor[inv] = nNow;
3908             }
3909             pto->mapAskFor.erase(pto->mapAskFor.begin());
3910         }
3911         if (!vGetData.empty())
3912             pto->PushMessage("getdata", vGetData);
3913
3914     }
3915     return true;
3916 }
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931 //////////////////////////////////////////////////////////////////////////////
3932 //
3933 // BitcoinMiner
3934 //
3935
3936 int static FormatHashBlocks(void* pbuffer, unsigned int len)
3937 {
3938     unsigned char* pdata = (unsigned char*)pbuffer;
3939     unsigned int blocks = 1 + ((len + 8) / 64);
3940     unsigned char* pend = pdata + 64 * blocks;
3941     memset(pdata + len, 0, 64 * blocks - len);
3942     pdata[len] = 0x80;
3943     unsigned int bits = len * 8;
3944     pend[-1] = (bits >> 0) & 0xff;
3945     pend[-2] = (bits >> 8) & 0xff;
3946     pend[-3] = (bits >> 16) & 0xff;
3947     pend[-4] = (bits >> 24) & 0xff;
3948     return blocks;
3949 }
3950
3951 static const unsigned int pSHA256InitState[8] =
3952 {0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19};
3953
3954 void SHA256Transform(void* pstate, void* pinput, const void* pinit)
3955 {
3956     SHA256_CTX ctx;
3957     unsigned char data[64];
3958
3959     SHA256_Init(&ctx);
3960
3961     for (int i = 0; i < 16; i++)
3962         ((uint32_t*)data)[i] = ByteReverse(((uint32_t*)pinput)[i]);
3963
3964     for (int i = 0; i < 8; i++)
3965         ctx.h[i] = ((uint32_t*)pinit)[i];
3966
3967     SHA256_Update(&ctx, data, sizeof(data));
3968     for (int i = 0; i < 8; i++)
3969         ((uint32_t*)pstate)[i] = ctx.h[i];
3970 }
3971
3972 // Some explaining would be appreciated
3973 class COrphan
3974 {
3975 public:
3976     CTransaction* ptx;
3977     set<uint256> setDependsOn;
3978     double dPriority;
3979     double dFeePerKb;
3980
3981     COrphan(CTransaction* ptxIn)
3982     {
3983         ptx = ptxIn;
3984         dPriority = dFeePerKb = 0;
3985     }
3986
3987     void print() const
3988     {
3989         printf("COrphan(hash=%s, dPriority=%.1f, dFeePerKb=%.1f)\n",
3990                ptx->GetHash().ToString().substr(0,10).c_str(), dPriority, dFeePerKb);
3991         BOOST_FOREACH(uint256 hash, setDependsOn)
3992             printf("   setDependsOn %s\n", hash.ToString().substr(0,10).c_str());
3993     }
3994 };
3995
3996
3997 uint64 nLastBlockTx = 0;
3998 uint64 nLastBlockSize = 0;
3999 int64 nLastCoinStakeSearchInterval = 0;
4000  
4001 // We want to sort transactions by priority and fee, so:
4002 typedef boost::tuple<double, double, CTransaction*> TxPriority;
4003 class TxPriorityCompare
4004 {
4005     bool byFee;
4006 public:
4007     TxPriorityCompare(bool _byFee) : byFee(_byFee) { }
4008     bool operator()(const TxPriority& a, const TxPriority& b)
4009     {
4010         if (byFee)
4011         {
4012             if (a.get<1>() == b.get<1>())
4013                 return a.get<0>() < b.get<0>();
4014             return a.get<1>() < b.get<1>();
4015         }
4016         else
4017         {
4018             if (a.get<0>() == b.get<0>())
4019                 return a.get<1>() < b.get<1>();
4020             return a.get<0>() < b.get<0>();
4021         }
4022     }
4023 };
4024
4025 // CreateNewBlock:
4026 //   fProofOfStake: try (best effort) to make a proof-of-stake block
4027 CBlock* CreateNewBlock(CWallet* pwallet, bool fProofOfStake)
4028 {
4029     CReserveKey reservekey(pwallet);
4030
4031     // Create new block
4032     auto_ptr<CBlock> pblock(new CBlock());
4033     if (!pblock.get())
4034         return NULL;
4035
4036     // Create coinbase tx
4037     CTransaction txNew;
4038     txNew.vin.resize(1);
4039     txNew.vin[0].prevout.SetNull();
4040     txNew.vout.resize(1);
4041     txNew.vout[0].scriptPubKey << reservekey.GetReservedKey() << OP_CHECKSIG;
4042
4043     // Add our coinbase tx as first transaction
4044     pblock->vtx.push_back(txNew);
4045
4046     // Largest block you're willing to create:
4047     unsigned int nBlockMaxSize = GetArg("-blockmaxsize", MAX_BLOCK_SIZE_GEN/2);
4048     // Limit to betweeen 1K and MAX_BLOCK_SIZE-1K for sanity:
4049     nBlockMaxSize = std::max((unsigned int)1000, std::min((unsigned int)(MAX_BLOCK_SIZE-1000), nBlockMaxSize));
4050
4051     // Special compatibility rule before 20 Aug: limit size to 500,000 bytes:
4052     if (GetAdjustedTime() < LOCKS_SWITCH_TIME)
4053         nBlockMaxSize = std::min(nBlockMaxSize, (unsigned int)(MAX_BLOCK_SIZE_GEN));
4054
4055     // How much of the block should be dedicated to high-priority transactions,
4056     // included regardless of the fees they pay
4057     unsigned int nBlockPrioritySize = GetArg("-blockprioritysize", 27000);
4058     nBlockPrioritySize = std::min(nBlockMaxSize, nBlockPrioritySize);
4059
4060     // Minimum block size you want to create; block will be filled with free transactions
4061     // until there are no more or the block reaches this size:
4062     unsigned int nBlockMinSize = GetArg("-blockminsize", 0);
4063     nBlockMinSize = std::min(nBlockMaxSize, nBlockMinSize);
4064
4065     // Fee-per-kilobyte amount considered the same as "free"
4066     // Be careful setting this: if you set it to zero then
4067     // a transaction spammer can cheaply fill blocks using
4068     // 1-satoshi-fee transactions. It should be set above the real
4069     // cost to you of processing a transaction.
4070     int64 nMinTxFee = MIN_TX_FEE;
4071     if (mapArgs.count("-mintxfee"))
4072         ParseMoney(mapArgs["-mintxfee"], nMinTxFee);
4073
4074     // ppcoin: if coinstake available add coinstake tx
4075     static int64 nLastCoinStakeSearchTime = GetAdjustedTime();  // only initialized at startup
4076     CBlockIndex* pindexPrev = pindexBest;
4077
4078     if (fProofOfStake)  // attempt to find a coinstake
4079     {
4080         pblock->nBits = GetNextTargetRequired(pindexPrev, true);
4081         CTransaction txCoinStake;
4082         int64 nSearchTime = txCoinStake.nTime; // search to current time
4083         if (nSearchTime > nLastCoinStakeSearchTime)
4084         {
4085             if (pwallet->CreateCoinStake(*pwallet, pblock->nBits, nSearchTime-nLastCoinStakeSearchTime, txCoinStake))
4086             {
4087                 if (txCoinStake.nTime >= max(pindexPrev->GetMedianTimePast()+1, pindexPrev->GetBlockTime() - nMaxClockDrift))
4088                 {   // make sure coinstake would meet timestamp protocol
4089                     // as it would be the same as the block timestamp
4090                     pblock->vtx[0].vout[0].SetEmpty();
4091                     pblock->vtx[0].nTime = txCoinStake.nTime;
4092                     pblock->vtx.push_back(txCoinStake);
4093                 }
4094             }
4095             nLastCoinStakeSearchInterval = nSearchTime - nLastCoinStakeSearchTime;
4096             nLastCoinStakeSearchTime = nSearchTime;
4097         }
4098     }
4099
4100     pblock->nBits = GetNextTargetRequired(pindexPrev, pblock->IsProofOfStake());
4101
4102     // Collect memory pool transactions into the block
4103     int64 nFees = 0;
4104     {
4105         LOCK2(cs_main, mempool.cs);
4106         CBlockIndex* pindexPrev = pindexBest;
4107         CTxDB txdb("r");
4108
4109         // Priority order to process transactions
4110         list<COrphan> vOrphan; // list memory doesn't move
4111         map<uint256, vector<COrphan*> > mapDependers;
4112
4113         // This vector will be sorted into a priority queue:
4114         vector<TxPriority> vecPriority;
4115         vecPriority.reserve(mempool.mapTx.size());
4116         for (map<uint256, CTransaction>::iterator mi = mempool.mapTx.begin(); mi != mempool.mapTx.end(); ++mi)
4117         {
4118             CTransaction& tx = (*mi).second;
4119             if (tx.IsCoinBase() || tx.IsCoinStake() || !tx.IsFinal())
4120                 continue;
4121
4122             COrphan* porphan = NULL;
4123             double dPriority = 0;
4124             int64 nTotalIn = 0;
4125             bool fMissingInputs = false;
4126             BOOST_FOREACH(const CTxIn& txin, tx.vin)
4127             {
4128                 // Read prev transaction
4129                 CTransaction txPrev;
4130                 CTxIndex txindex;
4131                 if (!txPrev.ReadFromDisk(txdb, txin.prevout, txindex))
4132                 {
4133                     // This should never happen; all transactions in the memory
4134                     // pool should connect to either transactions in the chain
4135                     // or other transactions in the memory pool.
4136                     if (!mempool.mapTx.count(txin.prevout.hash))
4137                     {
4138                         printf("ERROR: mempool transaction missing input\n");
4139                         if (fDebug) assert("mempool transaction missing input" == 0);
4140                         fMissingInputs = true;
4141                         if (porphan)
4142                             vOrphan.pop_back();
4143                         break;
4144                     }
4145
4146                     // Has to wait for dependencies
4147                     if (!porphan)
4148                     {
4149                         // Use list for automatic deletion
4150                         vOrphan.push_back(COrphan(&tx));
4151                         porphan = &vOrphan.back();
4152                     }
4153                     mapDependers[txin.prevout.hash].push_back(porphan);
4154                     porphan->setDependsOn.insert(txin.prevout.hash);
4155                     nTotalIn += mempool.mapTx[txin.prevout.hash].vout[txin.prevout.n].nValue;
4156                     continue;
4157                 }
4158                 int64 nValueIn = txPrev.vout[txin.prevout.n].nValue;
4159                 nTotalIn += nValueIn;
4160
4161                 int nConf = txindex.GetDepthInMainChain();
4162                 dPriority += (double)nValueIn * nConf;
4163             }
4164             if (fMissingInputs) continue;
4165
4166             // Priority is sum(valuein * age) / txsize
4167             unsigned int nTxSize = ::GetSerializeSize(tx, SER_NETWORK, PROTOCOL_VERSION);
4168             dPriority /= nTxSize;
4169
4170             // This is a more accurate fee-per-kilobyte than is used by the client code, because the
4171             // client code rounds up the size to the nearest 1K. That's good, because it gives an
4172             // incentive to create smaller transactions.
4173             double dFeePerKb =  double(nTotalIn-tx.GetValueOut()) / (double(nTxSize)/1000.0);
4174
4175             if (porphan)
4176             {
4177                 porphan->dPriority = dPriority;
4178                 porphan->dFeePerKb = dFeePerKb;
4179             }
4180             else
4181                 vecPriority.push_back(TxPriority(dPriority, dFeePerKb, &(*mi).second));
4182         }
4183
4184         // Collect transactions into block
4185         map<uint256, CTxIndex> mapTestPool;
4186         uint64 nBlockSize = 1000;
4187         uint64 nBlockTx = 0;
4188         int nBlockSigOps = 100;
4189         bool fSortedByFee = (nBlockPrioritySize <= 0);
4190
4191         TxPriorityCompare comparer(fSortedByFee);
4192         std::make_heap(vecPriority.begin(), vecPriority.end(), comparer);
4193
4194         while (!vecPriority.empty())
4195         {
4196             // Take highest priority transaction off the priority queue:
4197             double dPriority = vecPriority.front().get<0>();
4198             double dFeePerKb = vecPriority.front().get<1>();
4199             CTransaction& tx = *(vecPriority.front().get<2>());
4200
4201             std::pop_heap(vecPriority.begin(), vecPriority.end(), comparer);
4202             vecPriority.pop_back();
4203
4204             // Size limits
4205             unsigned int nTxSize = ::GetSerializeSize(tx, SER_NETWORK, PROTOCOL_VERSION);
4206             if (nBlockSize + nTxSize >= nBlockMaxSize)
4207                 continue;
4208
4209             // Legacy limits on sigOps:
4210             unsigned int nTxSigOps = tx.GetLegacySigOpCount();
4211             if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS)
4212                 continue;
4213
4214             // Timestamp limit
4215             if (tx.nTime > GetAdjustedTime() || (pblock->IsProofOfStake() && tx.nTime > pblock->vtx[1].nTime))
4216                 continue;
4217
4218             // ppcoin: simplify transaction fee - allow free = false
4219             int64 nMinFee = tx.GetMinFee(nBlockSize, false, GMF_BLOCK);
4220
4221             // Skip free transactions if we're past the minimum block size:
4222             if (fSortedByFee && (dFeePerKb < nMinTxFee) && (nBlockSize + nTxSize >= nBlockMinSize))
4223                 continue;
4224
4225             // Prioritize by fee once past the priority size or we run out of high-priority
4226             // transactions:
4227             if (!fSortedByFee &&
4228                 ((nBlockSize + nTxSize >= nBlockPrioritySize) || (dPriority < COIN * 144 / 250)))
4229             {
4230                 fSortedByFee = true;
4231                 comparer = TxPriorityCompare(fSortedByFee);
4232                 std::make_heap(vecPriority.begin(), vecPriority.end(), comparer);
4233             }
4234
4235             // Connecting shouldn't fail due to dependency on other memory pool transactions
4236             // because we're already processing them in order of dependency
4237             map<uint256, CTxIndex> mapTestPoolTmp(mapTestPool);
4238             MapPrevTx mapInputs;
4239             bool fInvalid;
4240             if (!tx.FetchInputs(txdb, mapTestPoolTmp, false, true, mapInputs, fInvalid))
4241                 continue;
4242
4243             int64 nTxFees = tx.GetValueIn(mapInputs)-tx.GetValueOut();
4244             if (nTxFees < nMinFee)
4245                 continue;
4246
4247             nTxSigOps += tx.GetP2SHSigOpCount(mapInputs);
4248             if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS)
4249                 continue;
4250
4251             if (!tx.ConnectInputs(txdb, mapInputs, mapTestPoolTmp, CDiskTxPos(1,1,1), pindexPrev, false, true))
4252                 continue;
4253             mapTestPoolTmp[tx.GetHash()] = CTxIndex(CDiskTxPos(1,1,1), tx.vout.size());
4254             swap(mapTestPool, mapTestPoolTmp);
4255
4256             // Added
4257             pblock->vtx.push_back(tx);
4258             nBlockSize += nTxSize;
4259             ++nBlockTx;
4260             nBlockSigOps += nTxSigOps;
4261             nFees += nTxFees;
4262
4263             if (fDebug && GetBoolArg("-printpriority"))
4264             {
4265                 printf("priority %.1f feeperkb %.1f txid %s\n",
4266                        dPriority, dFeePerKb, tx.GetHash().ToString().c_str());
4267             }
4268
4269             // Add transactions that depend on this one to the priority queue
4270             uint256 hash = tx.GetHash();
4271             if (mapDependers.count(hash))
4272             {
4273                 BOOST_FOREACH(COrphan* porphan, mapDependers[hash])
4274                 {
4275                     if (!porphan->setDependsOn.empty())
4276                     {
4277                         porphan->setDependsOn.erase(hash);
4278                         if (porphan->setDependsOn.empty())
4279                         {
4280                             vecPriority.push_back(TxPriority(porphan->dPriority, porphan->dFeePerKb, porphan->ptx));
4281                             std::push_heap(vecPriority.begin(), vecPriority.end(), comparer);
4282                         }
4283                     }
4284                 }
4285             }
4286         }
4287
4288         nLastBlockTx = nBlockTx;
4289         nLastBlockSize = nBlockSize;
4290
4291         if (fDebug && GetBoolArg("-printpriority"))
4292             printf("CreateNewBlock(): total size %"PRI64u"\n", nBlockSize);
4293
4294         if (pblock->IsProofOfWork())
4295             pblock->vtx[0].vout[0].nValue = GetProofOfWorkReward(pblock->nBits);
4296
4297         // Fill in header
4298         pblock->hashPrevBlock  = pindexPrev->GetBlockHash();
4299         if (pblock->IsProofOfStake())
4300             pblock->nTime      = pblock->vtx[1].nTime; //same as coinstake timestamp
4301         pblock->nTime          = max(pindexPrev->GetMedianTimePast()+1, pblock->GetMaxTransactionTime());
4302         pblock->nTime          = max(pblock->GetBlockTime(), pindexPrev->GetBlockTime() - nMaxClockDrift);
4303         if (pblock->IsProofOfWork())
4304             pblock->UpdateTime(pindexPrev);
4305         pblock->nNonce         = 0;
4306     }
4307
4308     return pblock.release();
4309 }
4310
4311
4312 void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& nExtraNonce)
4313 {
4314     // Update nExtraNonce
4315     static uint256 hashPrevBlock;
4316     if (hashPrevBlock != pblock->hashPrevBlock)
4317     {
4318         nExtraNonce = 0;
4319         hashPrevBlock = pblock->hashPrevBlock;
4320     }
4321     ++nExtraNonce;
4322     unsigned int nHeight = pindexPrev->nHeight+1; // Height first in coinbase required for block.version=2
4323     pblock->vtx[0].vin[0].scriptSig = (CScript() << nHeight << CBigNum(nExtraNonce)) + COINBASE_FLAGS;
4324     assert(pblock->vtx[0].vin[0].scriptSig.size() <= 100);
4325
4326     pblock->hashMerkleRoot = pblock->BuildMerkleTree();
4327 }
4328
4329
4330 void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1)
4331 {
4332     //
4333     // Pre-build hash buffers
4334     //
4335     struct
4336     {
4337         struct unnamed2
4338         {
4339             int nVersion;
4340             uint256 hashPrevBlock;
4341             uint256 hashMerkleRoot;
4342             unsigned int nTime;
4343             unsigned int nBits;
4344             unsigned int nNonce;
4345         }
4346         block;
4347         unsigned char pchPadding0[64];
4348         uint256 hash1;
4349         unsigned char pchPadding1[64];
4350     }
4351     tmp;
4352     memset(&tmp, 0, sizeof(tmp));
4353
4354     tmp.block.nVersion       = pblock->nVersion;
4355     tmp.block.hashPrevBlock  = pblock->hashPrevBlock;
4356     tmp.block.hashMerkleRoot = pblock->hashMerkleRoot;
4357     tmp.block.nTime          = pblock->nTime;
4358     tmp.block.nBits          = pblock->nBits;
4359     tmp.block.nNonce         = pblock->nNonce;
4360
4361     FormatHashBlocks(&tmp.block, sizeof(tmp.block));
4362     FormatHashBlocks(&tmp.hash1, sizeof(tmp.hash1));
4363
4364     // Byte swap all the input buffer
4365     for (unsigned int i = 0; i < sizeof(tmp)/4; i++)
4366         ((unsigned int*)&tmp)[i] = ByteReverse(((unsigned int*)&tmp)[i]);
4367
4368     // Precalc the first half of the first hash, which stays constant
4369     SHA256Transform(pmidstate, &tmp.block, pSHA256InitState);
4370
4371     memcpy(pdata, &tmp.block, 128);
4372     memcpy(phash1, &tmp.hash1, 64);
4373 }
4374
4375
4376 bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey)
4377 {
4378     uint256 hash = pblock->GetHash();
4379     uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
4380
4381     if (hash > hashTarget && pblock->IsProofOfWork())
4382         return error("BitcoinMiner : proof-of-work not meeting target");
4383
4384     //// debug print
4385     printf("BitcoinMiner:\n");
4386     printf("new block found  \n  hash: %s  \ntarget: %s\n", hash.GetHex().c_str(), hashTarget.GetHex().c_str());
4387     pblock->print();
4388     printf("generated %s\n", FormatMoney(pblock->vtx[0].vout[0].nValue).c_str());
4389
4390     // Found a solution
4391     {
4392         LOCK(cs_main);
4393         if (pblock->hashPrevBlock != hashBestChain)
4394             return error("BitcoinMiner : generated block is stale");
4395
4396         // Remove key from key pool
4397         reservekey.KeepKey();
4398
4399         // Track how many getdata requests this block gets
4400         {
4401             LOCK(wallet.cs_wallet);
4402             wallet.mapRequestCount[pblock->GetHash()] = 0;
4403         }
4404
4405         // Process this block the same as if we had received it from another node
4406         if (!ProcessBlock(NULL, pblock))
4407             return error("BitcoinMiner : ProcessBlock, block not accepted");
4408     }
4409
4410     return true;
4411 }
4412
4413 void static ThreadBitcoinMiner(void* parg);
4414
4415 static bool fGenerateBitcoins = false;
4416 static bool fLimitProcessors = false;
4417 static int nLimitProcessors = -1;
4418
4419 void BitcoinMiner(CWallet *pwallet, bool fProofOfStake)
4420 {
4421     SetThreadPriority(THREAD_PRIORITY_LOWEST);
4422
4423     // Make this thread recognisable as the mining thread
4424     RenameThread("bitcoin-miner");
4425
4426     // Each thread has its own key and counter
4427     CReserveKey reservekey(pwallet);
4428     unsigned int nExtraNonce = 0;
4429
4430     while (fProofOfStake)
4431     {
4432         if (fShutdown)
4433             return;
4434         while (vNodes.empty() || IsInitialBlockDownload())
4435         {
4436             Sleep(1000);
4437             if (fShutdown)
4438                 return;
4439             if (!fProofOfStake)
4440                 return;
4441         }
4442
4443         while (pwallet->IsLocked())
4444         {
4445             strMintWarning = strMintMessage;
4446             Sleep(1000);
4447         }
4448         strMintWarning = "";
4449
4450         //
4451         // Create new block
4452         //
4453         CBlockIndex* pindexPrev = pindexBest;
4454
4455         auto_ptr<CBlock> pblock(CreateNewBlock(pwallet, fProofOfStake));
4456         if (!pblock.get())
4457             return;
4458         IncrementExtraNonce(pblock.get(), pindexPrev, nExtraNonce);
4459
4460         if (fProofOfStake)
4461         {
4462             // ppcoin: if proof-of-stake block found then process block
4463             if (pblock->IsProofOfStake())
4464             {
4465                 if (!pblock->SignBlock(*pwalletMain))
4466                 {
4467                     strMintWarning = strMintMessage;
4468                     continue;
4469                 }
4470                 strMintWarning = "";
4471                 printf("StakeMiner : proof-of-stake block found %s\n", pblock->GetHash().ToString().c_str()); 
4472                 SetThreadPriority(THREAD_PRIORITY_NORMAL);
4473                 CheckWork(pblock.get(), *pwalletMain, reservekey);
4474                 SetThreadPriority(THREAD_PRIORITY_LOWEST);
4475             }
4476             Sleep(500);
4477             continue;
4478         }
4479     }
4480 }
4481
4482 void static ThreadBitcoinMiner(void* parg)
4483 {
4484     CWallet* pwallet = (CWallet*)parg;
4485     try
4486     {
4487         vnThreadsRunning[THREAD_MINER]++;
4488         BitcoinMiner(pwallet, false);
4489         vnThreadsRunning[THREAD_MINER]--;
4490     }
4491     catch (std::exception& e) {
4492         vnThreadsRunning[THREAD_MINER]--;
4493         PrintException(&e, "ThreadBitcoinMiner()");
4494     } catch (...) {
4495         vnThreadsRunning[THREAD_MINER]--;
4496         PrintException(NULL, "ThreadBitcoinMiner()");
4497     }
4498     nHPSTimerStart = 0;
4499     if (vnThreadsRunning[THREAD_MINER] == 0)
4500         dHashesPerSec = 0;
4501     printf("ThreadBitcoinMiner exiting, %d threads remaining\n", vnThreadsRunning[THREAD_MINER]);
4502 }
4503
4504
4505 void GenerateBitcoins(bool fGenerate, CWallet* pwallet)
4506 {
4507     fGenerateBitcoins = fGenerate;
4508     nLimitProcessors = GetArg("-genproclimit", -1);
4509     if (nLimitProcessors == 0)
4510         fGenerateBitcoins = false;
4511     fLimitProcessors = (nLimitProcessors != -1);
4512
4513     if (fGenerate)
4514     {
4515         int nProcessors = boost::thread::hardware_concurrency();
4516         printf("%d processors\n", nProcessors);
4517         if (nProcessors < 1)
4518             nProcessors = 1;
4519         if (fLimitProcessors && nProcessors > nLimitProcessors)
4520             nProcessors = nLimitProcessors;
4521         int nAddThreads = nProcessors - vnThreadsRunning[THREAD_MINER];
4522         printf("Starting %d BitcoinMiner threads\n", nAddThreads);
4523         for (int i = 0; i < nAddThreads; i++)
4524         {
4525             if (!NewThread(ThreadBitcoinMiner, pwallet))
4526                 printf("Error: NewThread(ThreadBitcoinMiner) failed\n");
4527             Sleep(10);
4528         }
4529     }
4530 }