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