Implement additional script verification flags
[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, 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 CTransaction::ConnectInputs(CTxDB& txdb, MapPrevTx inputs, map<uint256, CTxIndex>& mapTestPool, const CDiskTxPos& posThisTx,
1462     const CBlockIndex* pindexBlock, bool fBlock, bool fMiner, unsigned int flags)
1463 {
1464     // Take over previous transactions' spent pointers
1465     // fBlock is true when this is called from AcceptBlock when a new best-block is added to the blockchain
1466     // fMiner is true when called from the internal bitcoin miner
1467     // ... both are false when called from CTransaction::AcceptToMemoryPool
1468     if (!IsCoinBase())
1469     {
1470         int64 nValueIn = 0;
1471         int64 nFees = 0;
1472         for (unsigned int i = 0; i < vin.size(); i++)
1473         {
1474             COutPoint prevout = vin[i].prevout;
1475             assert(inputs.count(prevout.hash) > 0);
1476             CTxIndex& txindex = inputs[prevout.hash].first;
1477             CTransaction& txPrev = inputs[prevout.hash].second;
1478
1479             if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size())
1480                 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()));
1481
1482             // If prev is coinbase or coinstake, check that it's matured
1483             if (txPrev.IsCoinBase() || txPrev.IsCoinStake())
1484                 for (const CBlockIndex* pindex = pindexBlock; pindex && pindexBlock->nHeight - pindex->nHeight < nCoinbaseMaturity; pindex = pindex->pprev)
1485                     if (pindex->nBlockPos == txindex.pos.nBlockPos && pindex->nFile == txindex.pos.nFile)
1486                         return error("ConnectInputs() : tried to spend %s at depth %d", txPrev.IsCoinBase() ? "coinbase" : "coinstake", pindexBlock->nHeight - pindex->nHeight);
1487
1488             // ppcoin: check transaction timestamp
1489             if (txPrev.nTime > nTime)
1490                 return DoS(100, error("ConnectInputs() : transaction timestamp earlier than input transaction"));
1491
1492             // Check for negative or overflow input values
1493             nValueIn += txPrev.vout[prevout.n].nValue;
1494             if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
1495                 return DoS(100, error("ConnectInputs() : txin values out of range"));
1496
1497         }
1498         // The first loop above does all the inexpensive checks.
1499         // Only if ALL inputs pass do we perform expensive ECDSA signature checks.
1500         // Helps prevent CPU exhaustion attacks.
1501         for (unsigned int i = 0; i < vin.size(); i++)
1502         {
1503             COutPoint prevout = vin[i].prevout;
1504             assert(inputs.count(prevout.hash) > 0);
1505             CTxIndex& txindex = inputs[prevout.hash].first;
1506             CTransaction& txPrev = inputs[prevout.hash].second;
1507
1508             // Check for conflicts (double-spend)
1509             // This doesn't trigger the DoS code on purpose; if it did, it would make it easier
1510             // for an attacker to attempt to split the network.
1511             if (!txindex.vSpent[prevout.n].IsNull())
1512                 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());
1513
1514             // Skip ECDSA signature verification when connecting blocks (fBlock=true)
1515             // before the last blockchain checkpoint. This is safe because block merkle hashes are
1516             // still computed and checked, and any change will be caught at the next checkpoint.
1517             if (!(fBlock && (nBestHeight < Checkpoints::GetTotalBlocksEstimate())))
1518             {
1519                 // Verify signature
1520                 if (!VerifySignature(txPrev, *this, i, flags, 0))
1521                 {
1522                     if (flags & STANDARD_NOT_MANDATORY_VERIFY_FLAGS)
1523                     {
1524                         if (VerifySignature(txPrev, *this, i, flags & ~STANDARD_NOT_MANDATORY_VERIFY_FLAGS, 0))
1525                             return error("ConnectInputs() : %s STANDARD_NOT_MANDATORY_VERIFY_FLAGS VerifySignature failed", GetHash().ToString().substr(0,10).c_str());
1526                     }
1527                     return DoS(100,error("ConnectInputs() : %s STANDARD_MANDATORY_VERIFY_FLAGS VerifySignature failed", GetHash().ToString().substr(0,10).c_str()));
1528                 }
1529             }
1530
1531             // Mark outpoints as spent
1532             txindex.vSpent[prevout.n] = posThisTx;
1533
1534             // Write back
1535             if (fBlock || fMiner)
1536             {
1537                 mapTestPool[prevout.hash] = txindex;
1538             }
1539         }
1540
1541         if (IsCoinStake())
1542         {
1543             // ppcoin: coin stake tx earns reward instead of paying fee
1544             uint64 nCoinAge;
1545             if (!GetCoinAge(txdb, nCoinAge))
1546                 return error("ConnectInputs() : %s unable to get coin age for coinstake", GetHash().ToString().substr(0,10).c_str());
1547
1548             unsigned int nTxSize = (nTime > VALIDATION_SWITCH_TIME || fTestNet) ? GetSerializeSize(SER_NETWORK, PROTOCOL_VERSION) : 0;
1549
1550             int64 nReward = GetValueOut() - nValueIn;
1551             int64 nCalculatedReward = GetProofOfStakeReward(nCoinAge, pindexBlock->nBits, nTime) - GetMinFee(1, false, GMF_BLOCK, nTxSize) + CENT;
1552
1553             if (nReward > nCalculatedReward)
1554                 return DoS(100, error("ConnectInputs() : coinstake pays too much(actual=%"PRI64d" vs calculated=%"PRI64d")", nReward, nCalculatedReward));
1555         }
1556         else
1557         {
1558             if (nValueIn < GetValueOut())
1559                 return DoS(100, error("ConnectInputs() : %s value in < value out", GetHash().ToString().substr(0,10).c_str()));
1560
1561             // Tally transaction fees
1562             int64 nTxFee = nValueIn - GetValueOut();
1563             if (nTxFee < 0)
1564                 return DoS(100, error("ConnectInputs() : %s nTxFee < 0", GetHash().ToString().substr(0,10).c_str()));
1565
1566             nFees += nTxFee;
1567             if (!MoneyRange(nFees))
1568                 return DoS(100, error("ConnectInputs() : nFees out of range"));
1569         }
1570     }
1571
1572     return true;
1573 }
1574
1575
1576 bool CTransaction::ClientConnectInputs()
1577 {
1578     if (IsCoinBase())
1579         return false;
1580
1581     // Take over previous transactions' spent pointers
1582     {
1583         LOCK(mempool.cs);
1584         int64 nValueIn = 0;
1585         for (unsigned int i = 0; i < vin.size(); i++)
1586         {
1587             // Get prev tx from single transactions in memory
1588             COutPoint prevout = vin[i].prevout;
1589             if (!mempool.exists(prevout.hash))
1590                 return false;
1591             CTransaction& txPrev = mempool.lookup(prevout.hash);
1592
1593             if (prevout.n >= txPrev.vout.size())
1594                 return false;
1595
1596             // Verify signature
1597             if (!VerifySignature(txPrev, *this, i, SCRIPT_VERIFY_NOCACHE | SCRIPT_VERIFY_P2SH, 0))
1598                 return error("ConnectInputs() : VerifySignature failed");
1599
1600             ///// this is redundant with the mempool.mapNextTx stuff,
1601             ///// not sure which I want to get rid of
1602             ///// this has to go away now that posNext is gone
1603             // // Check for conflicts
1604             // if (!txPrev.vout[prevout.n].posNext.IsNull())
1605             //     return error("ConnectInputs() : prev tx already used");
1606             //
1607             // // Flag outpoints as used
1608             // txPrev.vout[prevout.n].posNext = posThisTx;
1609
1610             nValueIn += txPrev.vout[prevout.n].nValue;
1611
1612             if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
1613                 return error("ClientConnectInputs() : txin values out of range");
1614         }
1615         if (GetValueOut() > nValueIn)
1616             return false;
1617     }
1618
1619     return true;
1620 }
1621
1622
1623
1624
1625 bool CBlock::DisconnectBlock(CTxDB& txdb, CBlockIndex* pindex)
1626 {
1627     // Disconnect in reverse order
1628     for (int i = vtx.size()-1; i >= 0; i--)
1629         if (!vtx[i].DisconnectInputs(txdb))
1630             return false;
1631
1632     // Update block index on disk without changing it in memory.
1633     // The memory index structure will be changed after the db commits.
1634     if (pindex->pprev)
1635     {
1636         CDiskBlockIndex blockindexPrev(pindex->pprev);
1637         blockindexPrev.hashNext = 0;
1638         if (!txdb.WriteBlockIndex(blockindexPrev))
1639             return error("DisconnectBlock() : WriteBlockIndex failed");
1640     }
1641
1642     // ppcoin: clean up wallet after disconnecting coinstake
1643     BOOST_FOREACH(CTransaction& tx, vtx)
1644         SyncWithWallets(tx, this, false, false);
1645
1646     return true;
1647 }
1648
1649 bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex, bool fJustCheck)
1650 {
1651     // Check it again in case a previous version let a bad block in, but skip BlockSig checking
1652     if (!CheckBlock(!fJustCheck, !fJustCheck, false))
1653         return false;
1654
1655     bool fProtocol048 = fTestNet || VALIDATION_SWITCH_TIME < nTime;
1656
1657     // Do not allow blocks that contain transactions which 'overwrite' older transactions,
1658     // unless those are already completely spent.
1659     // If such overwrites are allowed, coinbases and transactions depending upon those
1660     // can be duplicated to remove the ability to spend the first instance -- even after
1661     // being sent to another address.
1662     // See BIP30 and http://r6.ca/blog/20120206T005236Z.html for more information.
1663     // This logic is not necessary for memory pool transactions, as AcceptToMemoryPool
1664     // already refuses previously-known transaction ids entirely.
1665     // This rule was originally applied all blocks whose timestamp was after March 15, 2012, 0:00 UTC.
1666     // Now that the whole chain is irreversibly beyond that time it is applied to all blocks except the
1667     // two in the chain that violate it. This prevents exploiting the issue against nodes in their
1668     // initial block download.
1669     bool fEnforceBIP30 = true; // Always active in NovaCoin
1670
1671     //// issue here: it doesn't know the version
1672     unsigned int nTxPos;
1673     if (fJustCheck)
1674         // FetchInputs treats CDiskTxPos(1,1,1) as a special "refer to memorypool" indicator
1675         // 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
1676         nTxPos = 1;
1677     else
1678         nTxPos = pindex->nBlockPos + ::GetSerializeSize(CBlock(), SER_DISK, CLIENT_VERSION) - (2 * GetSizeOfCompactSize(0)) + GetSizeOfCompactSize(vtx.size());
1679
1680     map<uint256, CTxIndex> mapQueuedChanges;
1681     int64 nFees = 0;
1682     int64 nValueIn = 0;
1683     int64 nValueOut = 0;
1684     unsigned int nSigOps = 0;
1685     BOOST_FOREACH(CTransaction& tx, vtx)
1686     {
1687         uint256 hashTx = tx.GetHash();
1688
1689         if (fEnforceBIP30) {
1690             CTxIndex txindexOld;
1691             if (txdb.ReadTxIndex(hashTx, txindexOld)) {
1692                 BOOST_FOREACH(CDiskTxPos &pos, txindexOld.vSpent)
1693                     if (pos.IsNull())
1694                         return false;
1695             }
1696         }
1697
1698         nSigOps += tx.GetLegacySigOpCount();
1699         if (nSigOps > MAX_BLOCK_SIGOPS)
1700             return DoS(100, error("ConnectBlock() : too many sigops"));
1701
1702         CDiskTxPos posThisTx(pindex->nFile, pindex->nBlockPos, nTxPos);
1703         if (!fJustCheck)
1704             nTxPos += ::GetSerializeSize(tx, SER_DISK, CLIENT_VERSION);
1705
1706         MapPrevTx mapInputs;
1707         if (tx.IsCoinBase())
1708             nValueOut += tx.GetValueOut();
1709         else
1710         {
1711             bool fInvalid;
1712             if (!tx.FetchInputs(txdb, mapQueuedChanges, true, false, mapInputs, fInvalid))
1713                 return false;
1714
1715             // Add in sigops done by pay-to-script-hash inputs;
1716             // this is to prevent a "rogue miner" from creating
1717             // an incredibly-expensive-to-validate block.
1718             nSigOps += tx.GetP2SHSigOpCount(mapInputs);
1719             if (nSigOps > MAX_BLOCK_SIGOPS)
1720                 return DoS(100, error("ConnectBlock() : too many sigops"));
1721
1722             int64 nTxValueIn = tx.GetValueIn(mapInputs);
1723             int64 nTxValueOut = tx.GetValueOut();
1724             nValueIn += nTxValueIn;
1725             nValueOut += nTxValueOut;
1726             if (!tx.IsCoinStake())
1727                 nFees += nTxValueIn - nTxValueOut;
1728
1729             if (!tx.ConnectInputs(txdb, mapInputs, mapQueuedChanges, posThisTx, pindex, true, false, SCRIPT_VERIFY_NOCACHE | SCRIPT_VERIFY_P2SH))
1730                 return false;
1731         }
1732
1733         mapQueuedChanges[hashTx] = CTxIndex(posThisTx, tx.vout.size());
1734     }
1735
1736     if (IsProofOfWork())
1737     {
1738         int64 nBlockReward = GetProofOfWorkReward(nBits, fProtocol048 ? nFees : 0);
1739
1740         // Check coinbase reward
1741         if (vtx[0].GetValueOut() > nBlockReward)
1742             return error("CheckBlock() : coinbase reward exceeded (actual=%"PRI64d" vs calculated=%"PRI64d")",
1743                    vtx[0].GetValueOut(),
1744                    nBlockReward);
1745     }
1746
1747     // track money supply and mint amount info
1748     pindex->nMint = nValueOut - nValueIn + nFees;
1749     pindex->nMoneySupply = (pindex->pprev? pindex->pprev->nMoneySupply : 0) + nValueOut - nValueIn;
1750     if (!txdb.WriteBlockIndex(CDiskBlockIndex(pindex)))
1751         return error("Connect() : WriteBlockIndex for pindex failed");
1752
1753     // fees are not collected by proof-of-stake miners
1754     // fees are destroyed to compensate the entire network
1755     if (fProtocol048 && fDebug && IsProofOfStake() && GetBoolArg("-printcreation"))
1756         printf("ConnectBlock() : destroy=%s nFees=%"PRI64d"\n", FormatMoney(nFees).c_str(), nFees);
1757
1758     if (fJustCheck)
1759         return true;
1760
1761     // Write queued txindex changes
1762     for (map<uint256, CTxIndex>::iterator mi = mapQueuedChanges.begin(); mi != mapQueuedChanges.end(); ++mi)
1763     {
1764         if (!txdb.UpdateTxIndex((*mi).first, (*mi).second))
1765             return error("ConnectBlock() : UpdateTxIndex failed");
1766     }
1767
1768     // Update block index on disk without changing it in memory.
1769     // The memory index structure will be changed after the db commits.
1770     if (pindex->pprev)
1771     {
1772         CDiskBlockIndex blockindexPrev(pindex->pprev);
1773         blockindexPrev.hashNext = pindex->GetBlockHash();
1774         if (!txdb.WriteBlockIndex(blockindexPrev))
1775             return error("ConnectBlock() : WriteBlockIndex failed");
1776     }
1777
1778     // Watch for transactions paying to me
1779     BOOST_FOREACH(CTransaction& tx, vtx)
1780         SyncWithWallets(tx, this, true);
1781
1782     return true;
1783 }
1784
1785 bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew)
1786 {
1787     printf("REORGANIZE\n");
1788
1789     // Find the fork
1790     CBlockIndex* pfork = pindexBest;
1791     CBlockIndex* plonger = pindexNew;
1792     while (pfork != plonger)
1793     {
1794         while (plonger->nHeight > pfork->nHeight)
1795             if (!(plonger = plonger->pprev))
1796                 return error("Reorganize() : plonger->pprev is null");
1797         if (pfork == plonger)
1798             break;
1799         if (!(pfork = pfork->pprev))
1800             return error("Reorganize() : pfork->pprev is null");
1801     }
1802
1803     // List of what to disconnect
1804     vector<CBlockIndex*> vDisconnect;
1805     for (CBlockIndex* pindex = pindexBest; pindex != pfork; pindex = pindex->pprev)
1806         vDisconnect.push_back(pindex);
1807
1808     // List of what to connect
1809     vector<CBlockIndex*> vConnect;
1810     for (CBlockIndex* pindex = pindexNew; pindex != pfork; pindex = pindex->pprev)
1811         vConnect.push_back(pindex);
1812     reverse(vConnect.begin(), vConnect.end());
1813
1814     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());
1815     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());
1816
1817     // Disconnect shorter branch
1818     vector<CTransaction> vResurrect;
1819     BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
1820     {
1821         CBlock block;
1822         if (!block.ReadFromDisk(pindex))
1823             return error("Reorganize() : ReadFromDisk for disconnect failed");
1824         if (!block.DisconnectBlock(txdb, pindex))
1825             return error("Reorganize() : DisconnectBlock %s failed", pindex->GetBlockHash().ToString().substr(0,20).c_str());
1826
1827         // Queue memory transactions to resurrect
1828         BOOST_FOREACH(const CTransaction& tx, block.vtx)
1829             if (!(tx.IsCoinBase() || tx.IsCoinStake()))
1830                 vResurrect.push_back(tx);
1831     }
1832
1833     // Connect longer branch
1834     vector<CTransaction> vDelete;
1835     for (unsigned int i = 0; i < vConnect.size(); i++)
1836     {
1837         CBlockIndex* pindex = vConnect[i];
1838         CBlock block;
1839         if (!block.ReadFromDisk(pindex))
1840             return error("Reorganize() : ReadFromDisk for connect failed");
1841         if (!block.ConnectBlock(txdb, pindex))
1842         {
1843             // Invalid block
1844             return error("Reorganize() : ConnectBlock %s failed", pindex->GetBlockHash().ToString().substr(0,20).c_str());
1845         }
1846
1847         // Queue memory transactions to delete
1848         BOOST_FOREACH(const CTransaction& tx, block.vtx)
1849             vDelete.push_back(tx);
1850     }
1851     if (!txdb.WriteHashBestChain(pindexNew->GetBlockHash()))
1852         return error("Reorganize() : WriteHashBestChain failed");
1853
1854     // Make sure it's successfully written to disk before changing memory structure
1855     if (!txdb.TxnCommit())
1856         return error("Reorganize() : TxnCommit failed");
1857
1858     // Disconnect shorter branch
1859     BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
1860         if (pindex->pprev)
1861             pindex->pprev->pnext = NULL;
1862
1863     // Connect longer branch
1864     BOOST_FOREACH(CBlockIndex* pindex, vConnect)
1865         if (pindex->pprev)
1866             pindex->pprev->pnext = pindex;
1867
1868     // Resurrect memory transactions that were in the disconnected branch
1869     BOOST_FOREACH(CTransaction& tx, vResurrect)
1870         tx.AcceptToMemoryPool(txdb, false);
1871
1872     // Delete redundant memory transactions that are in the connected branch
1873     BOOST_FOREACH(CTransaction& tx, vDelete)
1874         mempool.remove(tx);
1875
1876     printf("REORGANIZE: done\n");
1877
1878     return true;
1879 }
1880
1881
1882 // Called from inside SetBestChain: attaches a block to the new best chain being built
1883 bool CBlock::SetBestChainInner(CTxDB& txdb, CBlockIndex *pindexNew)
1884 {
1885     uint256 hash = GetHash();
1886
1887     // Adding to current best branch
1888     if (!ConnectBlock(txdb, pindexNew) || !txdb.WriteHashBestChain(hash))
1889     {
1890         txdb.TxnAbort();
1891         InvalidChainFound(pindexNew);
1892         return false;
1893     }
1894     if (!txdb.TxnCommit())
1895         return error("SetBestChain() : TxnCommit failed");
1896
1897     // Add to current best branch
1898     pindexNew->pprev->pnext = pindexNew;
1899
1900     // Delete redundant memory transactions
1901     BOOST_FOREACH(CTransaction& tx, vtx)
1902         mempool.remove(tx);
1903
1904     return true;
1905 }
1906
1907 bool CBlock::SetBestChain(CTxDB& txdb, CBlockIndex* pindexNew)
1908 {
1909     uint256 hash = GetHash();
1910
1911     if (!txdb.TxnBegin())
1912         return error("SetBestChain() : TxnBegin failed");
1913
1914     if (pindexGenesisBlock == NULL && hash == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet))
1915     {
1916         txdb.WriteHashBestChain(hash);
1917         if (!txdb.TxnCommit())
1918             return error("SetBestChain() : TxnCommit failed");
1919         pindexGenesisBlock = pindexNew;
1920     }
1921     else if (hashPrevBlock == hashBestChain)
1922     {
1923         if (!SetBestChainInner(txdb, pindexNew))
1924             return error("SetBestChain() : SetBestChainInner failed");
1925     }
1926     else
1927     {
1928         // the first block in the new chain that will cause it to become the new best chain
1929         CBlockIndex *pindexIntermediate = pindexNew;
1930
1931         // list of blocks that need to be connected afterwards
1932         std::vector<CBlockIndex*> vpindexSecondary;
1933
1934         // Reorganize is costly in terms of db load, as it works in a single db transaction.
1935         // Try to limit how much needs to be done inside
1936         while (pindexIntermediate->pprev && pindexIntermediate->pprev->nChainTrust > pindexBest->nChainTrust)
1937         {
1938             vpindexSecondary.push_back(pindexIntermediate);
1939             pindexIntermediate = pindexIntermediate->pprev;
1940         }
1941
1942         if (!vpindexSecondary.empty())
1943             printf("Postponing %"PRIszu" reconnects\n", vpindexSecondary.size());
1944
1945         // Switch to new best branch
1946         if (!Reorganize(txdb, pindexIntermediate))
1947         {
1948             txdb.TxnAbort();
1949             InvalidChainFound(pindexNew);
1950             return error("SetBestChain() : Reorganize failed");
1951         }
1952
1953         // Connect further blocks
1954         BOOST_REVERSE_FOREACH(CBlockIndex *pindex, vpindexSecondary)
1955         {
1956             CBlock block;
1957             if (!block.ReadFromDisk(pindex))
1958             {
1959                 printf("SetBestChain() : ReadFromDisk failed\n");
1960                 break;
1961             }
1962             if (!txdb.TxnBegin()) {
1963                 printf("SetBestChain() : TxnBegin 2 failed\n");
1964                 break;
1965             }
1966             // errors now are not fatal, we still did a reorganisation to a new chain in a valid way
1967             if (!block.SetBestChainInner(txdb, pindex))
1968                 break;
1969         }
1970     }
1971
1972     // Update best block in wallet (so we can detect restored wallets)
1973     bool fIsInitialDownload = IsInitialBlockDownload();
1974     if (!fIsInitialDownload)
1975     {
1976         const CBlockLocator locator(pindexNew);
1977         ::SetBestChain(locator);
1978     }
1979
1980     // New best block
1981     hashBestChain = hash;
1982     pindexBest = pindexNew;
1983     pblockindexFBBHLast = NULL;
1984     nBestHeight = pindexBest->nHeight;
1985     nBestChainTrust = pindexNew->nChainTrust;
1986     nTimeBestReceived = GetTime();
1987     nTransactionsUpdated++;
1988
1989     uint256 nBestBlockTrust = pindexBest->nHeight != 0 ? (pindexBest->nChainTrust - pindexBest->pprev->nChainTrust) : pindexBest->nChainTrust;
1990
1991     printf("SetBestChain: new best=%s  height=%d  trust=%s  blocktrust=%"PRI64d"  date=%s\n",
1992       hashBestChain.ToString().substr(0,20).c_str(), nBestHeight,
1993       CBigNum(nBestChainTrust).ToString().c_str(),
1994       nBestBlockTrust.Get64(),
1995       DateTimeStrFormat("%x %H:%M:%S", pindexBest->GetBlockTime()).c_str());
1996
1997     // Check the version of the last 100 blocks to see if we need to upgrade:
1998     if (!fIsInitialDownload)
1999     {
2000         int nUpgraded = 0;
2001         const CBlockIndex* pindex = pindexBest;
2002         for (int i = 0; i < 100 && pindex != NULL; i++)
2003         {
2004             if (pindex->nVersion > CBlock::CURRENT_VERSION)
2005                 ++nUpgraded;
2006             pindex = pindex->pprev;
2007         }
2008         if (nUpgraded > 0)
2009             printf("SetBestChain: %d of last 100 blocks above version %d\n", nUpgraded, CBlock::CURRENT_VERSION);
2010         if (nUpgraded > 100/2)
2011             // strMiscWarning is read by GetWarnings(), called by Qt and the JSON-RPC code to warn the user:
2012             strMiscWarning = _("Warning: This version is obsolete, upgrade required!");
2013     }
2014
2015     std::string strCmd = GetArg("-blocknotify", "");
2016
2017     if (!fIsInitialDownload && !strCmd.empty())
2018     {
2019         boost::replace_all(strCmd, "%s", hashBestChain.GetHex());
2020         boost::thread t(runCommand, strCmd); // thread runs free
2021     }
2022
2023     return true;
2024 }
2025
2026 // ppcoin: total coin age spent in transaction, in the unit of coin-days.
2027 // Only those coins meeting minimum age requirement counts. As those
2028 // transactions not in main chain are not currently indexed so we
2029 // might not find out about their coin age. Older transactions are 
2030 // guaranteed to be in main chain by sync-checkpoint. This rule is
2031 // introduced to help nodes establish a consistent view of the coin
2032 // age (trust score) of competing branches.
2033 bool CTransaction::GetCoinAge(CTxDB& txdb, uint64& nCoinAge) const
2034 {
2035     CBigNum bnCentSecond = 0;  // coin age in the unit of cent-seconds
2036     nCoinAge = 0;
2037
2038     if (IsCoinBase())
2039         return true;
2040
2041     BOOST_FOREACH(const CTxIn& txin, vin)
2042     {
2043         // First try finding the previous transaction in database
2044         CTransaction txPrev;
2045         CTxIndex txindex;
2046         if (!txPrev.ReadFromDisk(txdb, txin.prevout, txindex))
2047             continue;  // previous transaction not in main chain
2048         if (nTime < txPrev.nTime)
2049             return false;  // Transaction timestamp violation
2050
2051         // Read block header
2052         CBlock block;
2053         if (!block.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos, false))
2054             return false; // unable to read block of previous transaction
2055         if (block.GetBlockTime() + nStakeMinAge > nTime)
2056             continue; // only count coins meeting min age requirement
2057
2058         int64 nValueIn = txPrev.vout[txin.prevout.n].nValue;
2059         bnCentSecond += CBigNum(nValueIn) * (nTime-txPrev.nTime) / CENT;
2060
2061         if (fDebug && GetBoolArg("-printcoinage"))
2062             printf("coin age nValueIn=%"PRI64d" nTimeDiff=%d bnCentSecond=%s\n", nValueIn, nTime - txPrev.nTime, bnCentSecond.ToString().c_str());
2063     }
2064
2065     CBigNum bnCoinDay = bnCentSecond * CENT / COIN / (24 * 60 * 60);
2066     if (fDebug && GetBoolArg("-printcoinage"))
2067         printf("coin age bnCoinDay=%s\n", bnCoinDay.ToString().c_str());
2068     nCoinAge = bnCoinDay.getuint64();
2069     return true;
2070 }
2071
2072 // ppcoin: total coin age spent in block, in the unit of coin-days.
2073 bool CBlock::GetCoinAge(uint64& nCoinAge) const
2074 {
2075     nCoinAge = 0;
2076
2077     CTxDB txdb("r");
2078     BOOST_FOREACH(const CTransaction& tx, vtx)
2079     {
2080         uint64 nTxCoinAge;
2081         if (tx.GetCoinAge(txdb, nTxCoinAge))
2082             nCoinAge += nTxCoinAge;
2083         else
2084             return false;
2085     }
2086
2087     if (nCoinAge == 0) // block coin age minimum 1 coin-day
2088         nCoinAge = 1;
2089     if (fDebug && GetBoolArg("-printcoinage"))
2090         printf("block coin age total nCoinDays=%"PRI64d"\n", nCoinAge);
2091     return true;
2092 }
2093
2094 bool CBlock::AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos)
2095 {
2096     // Check for duplicate
2097     uint256 hash = GetHash();
2098     if (mapBlockIndex.count(hash))
2099         return error("AddToBlockIndex() : %s already exists", hash.ToString().substr(0,20).c_str());
2100
2101     // Construct new block index object
2102     CBlockIndex* pindexNew = new CBlockIndex(nFile, nBlockPos, *this);
2103     if (!pindexNew)
2104         return error("AddToBlockIndex() : new CBlockIndex failed");
2105     pindexNew->phashBlock = &hash;
2106     map<uint256, CBlockIndex*>::iterator miPrev = mapBlockIndex.find(hashPrevBlock);
2107     if (miPrev != mapBlockIndex.end())
2108     {
2109         pindexNew->pprev = (*miPrev).second;
2110         pindexNew->nHeight = pindexNew->pprev->nHeight + 1;
2111     }
2112
2113     // ppcoin: compute chain trust score
2114     pindexNew->nChainTrust = (pindexNew->pprev ? pindexNew->pprev->nChainTrust : 0) + pindexNew->GetBlockTrust();
2115
2116     // ppcoin: compute stake entropy bit for stake modifier
2117     if (!pindexNew->SetStakeEntropyBit(GetStakeEntropyBit(pindexNew->nTime)))
2118         return error("AddToBlockIndex() : SetStakeEntropyBit() failed");
2119
2120     // ppcoin: record proof-of-stake hash value
2121     if (pindexNew->IsProofOfStake())
2122     {
2123         if (!mapProofOfStake.count(hash))
2124             return error("AddToBlockIndex() : hashProofOfStake not found in map");
2125         pindexNew->hashProofOfStake = mapProofOfStake[hash];
2126     }
2127
2128     // ppcoin: compute stake modifier
2129     uint64 nStakeModifier = 0;
2130     bool fGeneratedStakeModifier = false;
2131     if (!ComputeNextStakeModifier(pindexNew, nStakeModifier, fGeneratedStakeModifier))
2132         return error("AddToBlockIndex() : ComputeNextStakeModifier() failed");
2133     pindexNew->SetStakeModifier(nStakeModifier, fGeneratedStakeModifier);
2134     pindexNew->nStakeModifierChecksum = GetStakeModifierChecksum(pindexNew);
2135     if (!CheckStakeModifierCheckpoints(pindexNew->nHeight, pindexNew->nStakeModifierChecksum))
2136         return error("AddToBlockIndex() : Rejected by stake modifier checkpoint height=%d, modifier=0x%016"PRI64x, pindexNew->nHeight, nStakeModifier);
2137
2138     // Add to mapBlockIndex
2139     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.insert(make_pair(hash, pindexNew)).first;
2140     if (pindexNew->IsProofOfStake())
2141         setStakeSeen.insert(make_pair(pindexNew->prevoutStake, pindexNew->nStakeTime));
2142     pindexNew->phashBlock = &((*mi).first);
2143
2144     // Write to disk block index
2145     CTxDB txdb;
2146     if (!txdb.TxnBegin())
2147         return false;
2148     txdb.WriteBlockIndex(CDiskBlockIndex(pindexNew));
2149     if (!txdb.TxnCommit())
2150         return false;
2151
2152     // New best
2153     if (pindexNew->nChainTrust > nBestChainTrust)
2154         if (!SetBestChain(txdb, pindexNew))
2155             return false;
2156
2157     if (pindexNew == pindexBest)
2158     {
2159         // Notify UI to display prev block's coinbase if it was ours
2160         static uint256 hashPrevBestCoinBase;
2161         UpdatedTransaction(hashPrevBestCoinBase);
2162         hashPrevBestCoinBase = vtx[0].GetHash();
2163     }
2164
2165     uiInterface.NotifyBlocksChanged();
2166     return true;
2167 }
2168
2169
2170
2171
2172 bool CBlock::CheckBlock(bool fCheckPOW, bool fCheckMerkleRoot, bool fCheckSig) const
2173 {
2174     // These are checks that are independent of context
2175     // that can be verified before saving an orphan block.
2176
2177     // Size limits
2178     if (vtx.empty() || vtx.size() > MAX_BLOCK_SIZE || ::GetSerializeSize(*this, SER_NETWORK, PROTOCOL_VERSION) > MAX_BLOCK_SIZE)
2179         return DoS(100, error("CheckBlock() : size limits failed"));
2180
2181     bool fProtocol048 = fTestNet || VALIDATION_SWITCH_TIME < nTime;
2182
2183     // Check proof of work matches claimed amount
2184     if (fCheckPOW && IsProofOfWork() && !CheckProofOfWork(GetHash(), nBits))
2185         return DoS(50, error("CheckBlock() : proof of work failed"));
2186
2187     // Check timestamp
2188     if (GetBlockTime() > FutureDrift(GetAdjustedTime()))
2189         return error("CheckBlock() : block timestamp too far in the future");
2190
2191     // First transaction must be coinbase, the rest must not be
2192     if (vtx.empty() || !vtx[0].IsCoinBase())
2193         return DoS(100, error("CheckBlock() : first tx is not coinbase"));
2194
2195     if (!fProtocol048)
2196     {
2197         // Check coinbase timestamp
2198         if (GetBlockTime() < (int64)vtx[0].nTime)
2199             return DoS(100, error("CheckBlock() : coinbase timestamp violation"));
2200     }
2201     else
2202     {
2203         // Check coinbase timestamp
2204         if (GetBlockTime() < PastDrift((int64)vtx[0].nTime))
2205             return DoS(50, error("CheckBlock() : coinbase timestamp is too late"));
2206     }
2207
2208     for (unsigned int i = 1; i < vtx.size(); i++)
2209     {
2210         if (vtx[i].IsCoinBase())
2211             return DoS(100, error("CheckBlock() : more than one coinbase"));
2212
2213         // Check transaction timestamp
2214         if (GetBlockTime() < (int64)vtx[i].nTime)
2215             return DoS(50, error("CheckBlock() : block timestamp earlier than transaction timestamp"));
2216     }
2217
2218     if (IsProofOfStake())
2219     {
2220         if (fProtocol048)
2221         {
2222             if (nNonce != 0)
2223                 return DoS(100, error("CheckBlock() : non-zero nonce in proof-of-stake block"));
2224         }
2225
2226         // Coinbase output should be empty if proof-of-stake block
2227         if (vtx[0].vout.size() != 1 || !vtx[0].vout[0].IsEmpty())
2228             return DoS(100, error("CheckBlock() : coinbase output not empty for proof-of-stake block"));
2229
2230         // Second transaction must be coinstake, the rest must not be
2231         if (vtx.empty() || !vtx[1].IsCoinStake())
2232             return DoS(100, error("CheckBlock() : second tx is not coinstake"));
2233         for (unsigned int i = 2; i < vtx.size(); i++)
2234             if (vtx[i].IsCoinStake())
2235                 return DoS(100, error("CheckBlock() : more than one coinstake"));
2236
2237         // Check coinstake timestamp
2238         if (GetBlockTime() != (int64)vtx[1].nTime)
2239             return DoS(50, error("CheckBlock() : coinstake timestamp violation nTimeBlock=%"PRI64d" nTimeTx=%u", GetBlockTime(), vtx[1].nTime));
2240
2241         // NovaCoin: check proof-of-stake block signature
2242         if (fCheckSig && !CheckBlockSignature(true))
2243             return DoS(100, error("CheckBlock() : bad proof-of-stake block signature"));
2244     }
2245     else
2246     {
2247         // Should we check proof-of-work block signature or not?
2248         //
2249         // * Always skip on TestNet
2250         // * Perform checking for the first 9689 blocks
2251         // * Perform checking since last checkpoint until 20 Sep 2013 (will be removed after)
2252
2253         if(!fTestNet && fCheckSig)
2254         {
2255             bool checkEntropySig = (GetBlockTime() < ENTROPY_SWITCH_TIME);
2256
2257             // NovaCoin: check proof-of-work block signature
2258             if (checkEntropySig && !CheckBlockSignature(false))
2259                 return DoS(100, error("CheckBlock() : bad proof-of-work block signature"));
2260         }
2261     }
2262
2263     // Check transactions
2264     BOOST_FOREACH(const CTransaction& tx, vtx)
2265     {
2266         if (!tx.CheckTransaction())
2267             return DoS(tx.nDoS, error("CheckBlock() : CheckTransaction failed"));
2268     }
2269
2270     // Check for duplicate txids. This is caught by ConnectInputs(),
2271     // but catching it earlier avoids a potential DoS attack:
2272     set<uint256> uniqueTx;
2273     BOOST_FOREACH(const CTransaction& tx, vtx)
2274     {
2275         uniqueTx.insert(tx.GetHash());
2276     }
2277     if (uniqueTx.size() != vtx.size())
2278         return DoS(100, error("CheckBlock() : duplicate transaction"));
2279
2280     unsigned int nSigOps = 0;
2281     BOOST_FOREACH(const CTransaction& tx, vtx)
2282     {
2283         nSigOps += tx.GetLegacySigOpCount();
2284     }
2285     if (nSigOps > MAX_BLOCK_SIGOPS)
2286         return DoS(100, error("CheckBlock() : out-of-bounds SigOpCount"));
2287
2288     // Check merkle root
2289     if (fCheckMerkleRoot && hashMerkleRoot != BuildMerkleTree())
2290         return DoS(100, error("CheckBlock() : hashMerkleRoot mismatch"));
2291
2292
2293     return true;
2294 }
2295
2296 bool CBlock::AcceptBlock()
2297 {
2298     // Check for duplicate
2299     uint256 hash = GetHash();
2300     if (mapBlockIndex.count(hash))
2301         return error("AcceptBlock() : block already in mapBlockIndex");
2302
2303     // Get prev block index
2304     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashPrevBlock);
2305     if (mi == mapBlockIndex.end())
2306         return DoS(10, error("AcceptBlock() : prev block not found"));
2307     CBlockIndex* pindexPrev = (*mi).second;
2308     int nHeight = pindexPrev->nHeight+1;
2309
2310     // Check proof-of-work or proof-of-stake
2311     if (nBits != GetNextTargetRequired(pindexPrev, IsProofOfStake()))
2312         return DoS(100, error("AcceptBlock() : incorrect %s", IsProofOfWork() ? "proof-of-work" : "proof-of-stake"));
2313
2314     // Check timestamp against prev
2315     if (GetBlockTime() <= pindexPrev->GetMedianTimePast() || FutureDrift(GetBlockTime()) < pindexPrev->GetBlockTime())
2316         return error("AcceptBlock() : block's timestamp is too early");
2317
2318     // Check that all transactions are finalized
2319     BOOST_FOREACH(const CTransaction& tx, vtx)
2320         if (!tx.IsFinal(nHeight, GetBlockTime()))
2321             return DoS(10, error("AcceptBlock() : contains a non-final transaction"));
2322
2323     // Check that the block chain matches the known block chain up to a checkpoint
2324     if (!Checkpoints::CheckHardened(nHeight, hash))
2325         return DoS(100, error("AcceptBlock() : rejected by hardened checkpoint lock-in at %d", nHeight));
2326
2327     bool cpSatisfies = Checkpoints::CheckSync(hash, pindexPrev);
2328
2329     // Check that the block satisfies synchronized checkpoint
2330     if (CheckpointsMode == Checkpoints::STRICT && !cpSatisfies)
2331         return error("AcceptBlock() : rejected by synchronized checkpoint");
2332
2333     if (CheckpointsMode == Checkpoints::ADVISORY && !cpSatisfies)
2334         strMiscWarning = _("WARNING: syncronized checkpoint violation detected, but skipped!");
2335
2336     // Enforce rule that the coinbase starts with serialized block height
2337     CScript expect = CScript() << nHeight;
2338     if (vtx[0].vin[0].scriptSig.size() < expect.size() ||
2339         !std::equal(expect.begin(), expect.end(), vtx[0].vin[0].scriptSig.begin()))
2340         return DoS(100, error("AcceptBlock() : block height mismatch in coinbase"));
2341
2342     // Write block to history file
2343     if (!CheckDiskSpace(::GetSerializeSize(*this, SER_DISK, CLIENT_VERSION)))
2344         return error("AcceptBlock() : out of disk space");
2345     unsigned int nFile = -1;
2346     unsigned int nBlockPos = 0;
2347     if (!WriteToDisk(nFile, nBlockPos))
2348         return error("AcceptBlock() : WriteToDisk failed");
2349     if (!AddToBlockIndex(nFile, nBlockPos))
2350         return error("AcceptBlock() : AddToBlockIndex failed");
2351
2352     // Relay inventory, but don't relay old inventory during initial block download
2353     int nBlockEstimate = Checkpoints::GetTotalBlocksEstimate();
2354     if (hashBestChain == hash)
2355     {
2356         LOCK(cs_vNodes);
2357         BOOST_FOREACH(CNode* pnode, vNodes)
2358             if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : nBlockEstimate))
2359                 pnode->PushInventory(CInv(MSG_BLOCK, hash));
2360     }
2361
2362     // ppcoin: check pending sync-checkpoint
2363     Checkpoints::AcceptPendingSyncCheckpoint();
2364
2365     return true;
2366 }
2367
2368 uint256 CBlockIndex::GetBlockTrust() const
2369 {
2370     CBigNum bnTarget;
2371     bnTarget.SetCompact(nBits);
2372
2373     if (bnTarget <= 0)
2374         return 0;
2375
2376     /* Old protocol */
2377     if (!fTestNet && GetBlockTime() < CHAINCHECKS_SWITCH_TIME)
2378         return (IsProofOfStake()? ((CBigNum(1)<<256) / (bnTarget+1)).getuint256() : 1);
2379
2380     /* New protocol */
2381
2382     // Calculate work amount for block
2383     uint256 nPoWTrust = (CBigNum(nPoWBase) / (bnTarget+1)).getuint256();
2384
2385     // Set nPowTrust to 1 if we are checking PoS block or PoW difficulty is too low
2386     nPoWTrust = (IsProofOfStake() || nPoWTrust < 1) ? 1 : nPoWTrust;
2387
2388     // Return nPoWTrust for the first 12 blocks
2389     if (pprev == NULL || pprev->nHeight < 12)
2390         return nPoWTrust;
2391
2392     const CBlockIndex* currentIndex = pprev;
2393
2394     if(IsProofOfStake())
2395     {
2396         CBigNum bnNewTrust = (CBigNum(1)<<256) / (bnTarget+1);
2397
2398         // Return 1/3 of score if parent block is not the PoW block
2399         if (!pprev->IsProofOfWork())
2400             return (bnNewTrust / 3).getuint256();
2401
2402         int nPoWCount = 0;
2403
2404         // Check last 12 blocks type
2405         while (pprev->nHeight - currentIndex->nHeight < 12)
2406         {
2407             if (currentIndex->IsProofOfWork())
2408                 nPoWCount++;
2409             currentIndex = currentIndex->pprev;
2410         }
2411
2412         // Return 1/3 of score if less than 3 PoW blocks found
2413         if (nPoWCount < 3)
2414             return (bnNewTrust / 3).getuint256();
2415
2416         return bnNewTrust.getuint256();
2417     }
2418     else
2419     {
2420         CBigNum bnLastBlockTrust = CBigNum(pprev->nChainTrust - pprev->pprev->nChainTrust);
2421
2422         // Return nPoWTrust + 2/3 of previous block score if two parent blocks are not PoS blocks
2423         if (!(pprev->IsProofOfStake() && pprev->pprev->IsProofOfStake()))
2424             return nPoWTrust + (2 * bnLastBlockTrust / 3).getuint256();
2425
2426         int nPoSCount = 0;
2427
2428         // Check last 12 blocks type
2429         while (pprev->nHeight - currentIndex->nHeight < 12)
2430         {
2431             if (currentIndex->IsProofOfStake())
2432                 nPoSCount++;
2433             currentIndex = currentIndex->pprev;
2434         }
2435
2436         // Return nPoWTrust + 2/3 of previous block score if less than 7 PoS blocks found
2437         if (nPoSCount < 7)
2438             return nPoWTrust + (2 * bnLastBlockTrust / 3).getuint256();
2439
2440         bnTarget.SetCompact(pprev->nBits);
2441
2442         if (bnTarget <= 0)
2443             return 0;
2444
2445         CBigNum bnNewTrust = (CBigNum(1)<<256) / (bnTarget+1);
2446
2447         // Return nPoWTrust + full trust score for previous block nBits
2448         return nPoWTrust + bnNewTrust.getuint256();
2449     }
2450 }
2451
2452 bool CBlockIndex::IsSuperMajority(int minVersion, const CBlockIndex* pstart, unsigned int nRequired, unsigned int nToCheck)
2453 {
2454     unsigned int nFound = 0;
2455     for (unsigned int i = 0; i < nToCheck && nFound < nRequired && pstart != NULL; i++)
2456     {
2457         if (pstart->nVersion >= minVersion)
2458             ++nFound;
2459         pstart = pstart->pprev;
2460     }
2461     return (nFound >= nRequired);
2462 }
2463
2464 bool ProcessBlock(CNode* pfrom, CBlock* pblock)
2465 {
2466     // Check for duplicate
2467     uint256 hash = pblock->GetHash();
2468     if (mapBlockIndex.count(hash))
2469         return error("ProcessBlock() : already have block %d %s", mapBlockIndex[hash]->nHeight, hash.ToString().substr(0,20).c_str());
2470     if (mapOrphanBlocks.count(hash))
2471         return error("ProcessBlock() : already have block (orphan) %s", hash.ToString().substr(0,20).c_str());
2472
2473     // ppcoin: check proof-of-stake
2474     // Limited duplicity on stake: prevents block flood attack
2475     // Duplicate stake allowed only when there is orphan child block
2476     if (pblock->IsProofOfStake() && setStakeSeen.count(pblock->GetProofOfStake()) && !mapOrphanBlocksByPrev.count(hash) && !Checkpoints::WantedByPendingSyncCheckpoint(hash))
2477         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());
2478
2479     // Preliminary checks
2480     if (!pblock->CheckBlock())
2481         return error("ProcessBlock() : CheckBlock FAILED");
2482
2483     // ppcoin: verify hash target and signature of coinstake tx
2484     if (pblock->IsProofOfStake())
2485     {
2486         uint256 hashProofOfStake = 0, targetProofOfStake = 0;
2487         if (!CheckProofOfStake(pblock->vtx[1], pblock->nBits, hashProofOfStake, targetProofOfStake))
2488         {
2489             printf("WARNING: ProcessBlock(): check proof-of-stake failed for block %s\n", hash.ToString().c_str());
2490             return false; // do not error here as we expect this during initial block download
2491         }
2492         if (!mapProofOfStake.count(hash)) // add to mapProofOfStake
2493             mapProofOfStake.insert(make_pair(hash, hashProofOfStake));
2494     }
2495
2496     CBlockIndex* pcheckpoint = Checkpoints::GetLastSyncCheckpoint();
2497     if (pcheckpoint && pblock->hashPrevBlock != hashBestChain && !Checkpoints::WantedByPendingSyncCheckpoint(hash))
2498     {
2499         // Extra checks to prevent "fill up memory by spamming with bogus blocks"
2500         int64 deltaTime = pblock->GetBlockTime() - pcheckpoint->nTime;
2501         CBigNum bnNewBlock;
2502         bnNewBlock.SetCompact(pblock->nBits);
2503         CBigNum bnRequired;
2504
2505         if (pblock->IsProofOfStake())
2506             bnRequired.SetCompact(ComputeMinStake(GetLastBlockIndex(pcheckpoint, true)->nBits, deltaTime, pblock->nTime));
2507         else
2508             bnRequired.SetCompact(ComputeMinWork(GetLastBlockIndex(pcheckpoint, false)->nBits, deltaTime));
2509
2510         if (bnNewBlock > bnRequired)
2511         {
2512             if (pfrom)
2513                 pfrom->Misbehaving(100);
2514             return error("ProcessBlock() : block with too little %s", pblock->IsProofOfStake()? "proof-of-stake" : "proof-of-work");
2515         }
2516     }
2517
2518     // ppcoin: ask for pending sync-checkpoint if any
2519     if (!IsInitialBlockDownload())
2520         Checkpoints::AskForPendingSyncCheckpoint(pfrom);
2521
2522     // If don't already have its previous block, shunt it off to holding area until we get it
2523     if (!mapBlockIndex.count(pblock->hashPrevBlock))
2524     {
2525         printf("ProcessBlock: ORPHAN BLOCK, prev=%s\n", pblock->hashPrevBlock.ToString().substr(0,20).c_str());
2526         CBlock* pblock2 = new CBlock(*pblock);
2527         // ppcoin: check proof-of-stake
2528         if (pblock2->IsProofOfStake())
2529         {
2530             // Limited duplicity on stake: prevents block flood attack
2531             // Duplicate stake allowed only when there is orphan child block
2532             if (setStakeSeenOrphan.count(pblock2->GetProofOfStake()) && !mapOrphanBlocksByPrev.count(hash) && !Checkpoints::WantedByPendingSyncCheckpoint(hash))
2533                 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());
2534             else
2535                 setStakeSeenOrphan.insert(pblock2->GetProofOfStake());
2536         }
2537         mapOrphanBlocks.insert(make_pair(hash, pblock2));
2538         mapOrphanBlocksByPrev.insert(make_pair(pblock2->hashPrevBlock, pblock2));
2539
2540         // Ask this guy to fill in what we're missing
2541         if (pfrom)
2542         {
2543             pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(pblock2));
2544             // ppcoin: getblocks may not obtain the ancestor block rejected
2545             // earlier by duplicate-stake check so we ask for it again directly
2546             if (!IsInitialBlockDownload())
2547                 pfrom->AskFor(CInv(MSG_BLOCK, WantedByOrphan(pblock2)));
2548         }
2549         return true;
2550     }
2551
2552     // Store to disk
2553     if (!pblock->AcceptBlock())
2554         return error("ProcessBlock() : AcceptBlock FAILED");
2555
2556     // Recursively process any orphan blocks that depended on this one
2557     vector<uint256> vWorkQueue;
2558     vWorkQueue.push_back(hash);
2559     for (unsigned int i = 0; i < vWorkQueue.size(); i++)
2560     {
2561         uint256 hashPrev = vWorkQueue[i];
2562         for (multimap<uint256, CBlock*>::iterator mi = mapOrphanBlocksByPrev.lower_bound(hashPrev);
2563              mi != mapOrphanBlocksByPrev.upper_bound(hashPrev);
2564              ++mi)
2565         {
2566             CBlock* pblockOrphan = (*mi).second;
2567             if (pblockOrphan->AcceptBlock())
2568                 vWorkQueue.push_back(pblockOrphan->GetHash());
2569             mapOrphanBlocks.erase(pblockOrphan->GetHash());
2570             setStakeSeenOrphan.erase(pblockOrphan->GetProofOfStake());
2571             delete pblockOrphan;
2572         }
2573         mapOrphanBlocksByPrev.erase(hashPrev);
2574     }
2575
2576     printf("ProcessBlock: ACCEPTED\n");
2577
2578     // ppcoin: if responsible for sync-checkpoint send it
2579     if (pfrom && !CSyncCheckpoint::strMasterPrivKey.empty())
2580         Checkpoints::SendSyncCheckpoint(Checkpoints::AutoSelectSyncCheckpoint());
2581
2582     return true;
2583 }
2584
2585 // novacoin: attempt to generate suitable proof-of-stake
2586 bool CBlock::SignBlock(CWallet& wallet)
2587 {
2588     // if we are trying to sign
2589     //    something except proof-of-stake block template
2590     if (!vtx[0].vout[0].IsEmpty())
2591         return false;
2592
2593     // if we are trying to sign
2594     //    a complete proof-of-stake block
2595     if (IsProofOfStake())
2596         return true;
2597
2598     static int64 nLastCoinStakeSearchTime = GetAdjustedTime(); // startup timestamp
2599
2600     CKey key;
2601     CTransaction txCoinStake;
2602     int64 nSearchTime = txCoinStake.nTime; // search to current time
2603
2604     if (nSearchTime > nLastCoinStakeSearchTime)
2605     {
2606         if (wallet.CreateCoinStake(wallet, nBits, nSearchTime-nLastCoinStakeSearchTime, txCoinStake, key))
2607         {
2608             if (txCoinStake.nTime >= max(pindexBest->GetMedianTimePast()+1, PastDrift(pindexBest->GetBlockTime())))
2609             {
2610                 // make sure coinstake would meet timestamp protocol
2611                 //    as it would be the same as the block timestamp
2612                 vtx[0].nTime = nTime = txCoinStake.nTime;
2613                 nTime = max(pindexBest->GetMedianTimePast()+1, GetMaxTransactionTime());
2614                 nTime = max(GetBlockTime(), PastDrift(pindexBest->GetBlockTime()));
2615
2616                 // we have to make sure that we have no future timestamps in
2617                 //    our transactions set
2618                 for (vector<CTransaction>::iterator it = vtx.begin(); it != vtx.end();)
2619                     if (it->nTime > nTime) { it = vtx.erase(it); } else { ++it; }
2620
2621                 vtx.insert(vtx.begin() + 1, txCoinStake);
2622                 hashMerkleRoot = BuildMerkleTree();
2623
2624                 // append a signature to our block
2625                 return key.Sign(GetHash(), vchBlockSig);
2626             }
2627         }
2628         nLastCoinStakeSearchInterval = nSearchTime - nLastCoinStakeSearchTime;
2629         nLastCoinStakeSearchTime = nSearchTime;
2630     }
2631
2632     return false;
2633 }
2634
2635 // ppcoin: check block signature
2636 bool CBlock::CheckBlockSignature(bool fProofOfStake) const
2637 {
2638     if (GetHash() == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet))
2639         return vchBlockSig.empty();
2640
2641     vector<valtype> vSolutions;
2642     txnouttype whichType;
2643
2644     if(fProofOfStake)
2645     {
2646         const CTxOut& txout = vtx[1].vout[1];
2647
2648         if (!Solver(txout.scriptPubKey, whichType, vSolutions))
2649             return false;
2650         if (whichType == TX_PUBKEY)
2651         {
2652             valtype& vchPubKey = vSolutions[0];
2653             CKey key;
2654             if (!key.SetPubKey(vchPubKey))
2655                 return false;
2656             if (vchBlockSig.empty())
2657                 return false;
2658             return key.Verify(GetHash(), vchBlockSig);
2659         }
2660     }
2661     else
2662     {
2663         for(unsigned int i = 0; i < vtx[0].vout.size(); i++)
2664         {
2665             const CTxOut& txout = vtx[0].vout[i];
2666
2667             if (!Solver(txout.scriptPubKey, whichType, vSolutions))
2668                 return false;
2669
2670             if (whichType == TX_PUBKEY)
2671             {
2672                 // Verify
2673                 valtype& vchPubKey = vSolutions[0];
2674                 CKey key;
2675                 if (!key.SetPubKey(vchPubKey))
2676                     continue;
2677                 if (vchBlockSig.empty())
2678                     continue;
2679                 if(!key.Verify(GetHash(), vchBlockSig))
2680                     continue;
2681
2682                 return true;
2683             }
2684         }
2685     }
2686     return false;
2687 }
2688
2689 bool CheckDiskSpace(uint64 nAdditionalBytes)
2690 {
2691     uint64 nFreeBytesAvailable = filesystem::space(GetDataDir()).available;
2692
2693     // Check for nMinDiskSpace bytes (currently 50MB)
2694     if (nFreeBytesAvailable < nMinDiskSpace + nAdditionalBytes)
2695     {
2696         fShutdown = true;
2697         string strMessage = _("Warning: Disk space is low!");
2698         strMiscWarning = strMessage;
2699         printf("*** %s\n", strMessage.c_str());
2700         uiInterface.ThreadSafeMessageBox(strMessage, "NovaCoin", CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
2701         StartShutdown();
2702         return false;
2703     }
2704     return true;
2705 }
2706
2707 static filesystem::path BlockFilePath(unsigned int nFile)
2708 {
2709     string strBlockFn = strprintf("blk%04u.dat", nFile);
2710     return GetDataDir() / strBlockFn;
2711 }
2712
2713 FILE* OpenBlockFile(unsigned int nFile, unsigned int nBlockPos, const char* pszMode)
2714 {
2715     if ((nFile < 1) || (nFile == (unsigned int) -1))
2716         return NULL;
2717     FILE* file = fopen(BlockFilePath(nFile).string().c_str(), pszMode);
2718     if (!file)
2719         return NULL;
2720     if (nBlockPos != 0 && !strchr(pszMode, 'a') && !strchr(pszMode, 'w'))
2721     {
2722         if (fseek(file, nBlockPos, SEEK_SET) != 0)
2723         {
2724             fclose(file);
2725             return NULL;
2726         }
2727     }
2728     return file;
2729 }
2730
2731 static unsigned int nCurrentBlockFile = 1;
2732
2733 FILE* AppendBlockFile(unsigned int& nFileRet)
2734 {
2735     nFileRet = 0;
2736     while (true)
2737     {
2738         FILE* file = OpenBlockFile(nCurrentBlockFile, 0, "ab");
2739         if (!file)
2740             return NULL;
2741         if (fseek(file, 0, SEEK_END) != 0)
2742             return NULL;
2743         // FAT32 file size max 4GB, fseek and ftell max 2GB, so we must stay under 2GB
2744         if (ftell(file) < (long)(0x7F000000 - MAX_SIZE))
2745         {
2746             nFileRet = nCurrentBlockFile;
2747             return file;
2748         }
2749         fclose(file);
2750         nCurrentBlockFile++;
2751     }
2752 }
2753
2754 bool LoadBlockIndex(bool fAllowNew)
2755 {
2756     CBigNum bnTrustedModulus;
2757
2758     if (fTestNet)
2759     {
2760         pchMessageStart[0] = 0xcd;
2761         pchMessageStart[1] = 0xf2;
2762         pchMessageStart[2] = 0xc0;
2763         pchMessageStart[3] = 0xef;
2764
2765         bnTrustedModulus.SetHex("f0d14cf72623dacfe738d0892b599be0f31052239cddd95a3f25101c801dc990453b38c9434efe3f372db39a32c2bb44cbaea72d62c8931fa785b0ec44531308df3e46069be5573e49bb29f4d479bfc3d162f57a5965db03810be7636da265bfced9c01a6b0296c77910ebdc8016f70174f0f18a57b3b971ac43a934c6aedbc5c866764a3622b5b7e3f9832b8b3f133c849dbcc0396588abcd1e41048555746e4823fb8aba5b3d23692c6857fccce733d6bb6ec1d5ea0afafecea14a0f6f798b6b27f77dc989c557795cc39a0940ef6bb29a7fc84135193a55bcfc2f01dd73efad1b69f45a55198bd0e6bef4d338e452f6a420f1ae2b1167b923f76633ab6e55");
2766         bnProofOfWorkLimit = bnProofOfWorkLimitTestNet; // 16 bits PoW target limit for testnet
2767         nStakeMinAge = 2 * 60 * 60; // test net min age is 2 hours
2768         nModifierInterval = 20 * 60; // test modifier interval is 20 minutes
2769         nCoinbaseMaturity = 10; // test maturity is 10 blocks
2770         nStakeTargetSpacing = 5 * 60; // test block spacing is 5 minutes
2771     }
2772     else
2773     {
2774         bnTrustedModulus.SetHex("d01f952e1090a5a72a3eda261083256596ccc192935ae1454c2bafd03b09e6ed11811be9f3a69f5783bbbced8c6a0c56621f42c2d19087416facf2f13cc7ed7159d1c5253119612b8449f0c7f54248e382d30ecab1928dbf075c5425dcaee1a819aa13550e0f3227b8c685b14e0eae094d65d8a610a6f49fff8145259d1187e4c6a472fa5868b2b67f957cb74b787f4311dbc13c97a2ca13acdb876ff506ebecbb904548c267d68868e07a32cd9ed461fbc2f920e9940e7788fed2e4817f274df5839c2196c80abe5c486df39795186d7bc86314ae1e8342f3c884b158b4b05b4302754bf351477d35370bad6639b2195d30006b77bf3dbb28b848fd9ecff5662bf39dde0c974e83af51b0d3d642d43834827b8c3b189065514636b8f2a59c42ba9b4fc4975d4827a5d89617a3873e4b377b4d559ad165748632bd928439cfbc5a8ef49bc2220e0b15fb0aa302367d5e99e379a961c1bc8cf89825da5525e3c8f14d7d8acca2fa9c133a2176ae69874d8b1d38b26b9c694e211018005a97b40848681b9dd38feb2de141626fb82591aad20dc629b2b6421cef1227809551a0e4e943ab99841939877f18f2d9c0addc93cf672e26b02ed94da3e6d329e8ac8f3736eebbf37bb1a21e5aadf04ee8e3b542f876aa88b2adf2608bd86329b7f7a56fd0dc1c40b48188731d11082aea360c62a0840c2db3dad7178fd7e359317ae081");
2775     }
2776
2777     // Set up the Zerocoin Params object
2778     ZCParams = new libzerocoin::Params(bnTrustedModulus);
2779
2780     //
2781     // Load block index
2782     //
2783     CTxDB txdb("cr+");
2784     if (!txdb.LoadBlockIndex())
2785         return false;
2786
2787     //
2788     // Init with genesis block
2789     //
2790     if (mapBlockIndex.empty())
2791     {
2792         if (!fAllowNew)
2793             return false;
2794
2795         // Genesis block
2796
2797         // MainNet:
2798
2799         //CBlock(hash=00000a060336cbb72fe969666d337b87198b1add2abaa59cca226820b32933a4, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=4cb33b3b6a861dcbc685d3e614a9cafb945738d6833f182855679f2fad02057b, nTime=1360105017, nBits=1e0fffff, nNonce=1575379, vtx=1, vchBlockSig=)
2800         //  Coinbase(hash=4cb33b3b6a, nTime=1360105017, ver=1, vin.size=1, vout.size=1, nLockTime=0)
2801         //    CTxIn(COutPoint(0000000000, 4294967295), coinbase 04ffff001d020f274468747470733a2f2f626974636f696e74616c6b2e6f72672f696e6465782e7068703f746f7069633d3133343137392e6d736731353032313936236d736731353032313936)
2802         //    CTxOut(empty)
2803         //  vMerkleTree: 4cb33b3b6a
2804
2805         // TestNet:
2806
2807         //CBlock(hash=0000c763e402f2436da9ed36c7286f62c3f6e5dbafce9ff289bd43d7459327eb, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=4cb33b3b6a861dcbc685d3e614a9cafb945738d6833f182855679f2fad02057b, nTime=1360105017, nBits=1f00ffff, nNonce=46534, vtx=1, vchBlockSig=)
2808         //  Coinbase(hash=4cb33b3b6a, nTime=1360105017, ver=1, vin.size=1, vout.size=1, nLockTime=0)
2809         //    CTxIn(COutPoint(0000000000, 4294967295), coinbase 04ffff001d020f274468747470733a2f2f626974636f696e74616c6b2e6f72672f696e6465782e7068703f746f7069633d3133343137392e6d736731353032313936236d736731353032313936)
2810         //    CTxOut(empty)
2811         //  vMerkleTree: 4cb33b3b6a
2812
2813         const char* pszTimestamp = "https://bitcointalk.org/index.php?topic=134179.msg1502196#msg1502196";
2814         CTransaction txNew;
2815         txNew.nTime = 1360105017;
2816         txNew.vin.resize(1);
2817         txNew.vout.resize(1);
2818         txNew.vin[0].scriptSig = CScript() << 486604799 << CBigNum(9999) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
2819         txNew.vout[0].SetEmpty();
2820         CBlock block;
2821         block.vtx.push_back(txNew);
2822         block.hashPrevBlock = 0;
2823         block.hashMerkleRoot = block.BuildMerkleTree();
2824         block.nVersion = 1;
2825         block.nTime    = 1360105017;
2826         block.nBits    = bnProofOfWorkLimit.GetCompact();
2827         block.nNonce   = !fTestNet ? 1575379 : 46534;
2828
2829         //// debug print
2830         assert(block.hashMerkleRoot == uint256("0x4cb33b3b6a861dcbc685d3e614a9cafb945738d6833f182855679f2fad02057b"));
2831         block.print();
2832         assert(block.GetHash() == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet));
2833         assert(block.CheckBlock());
2834
2835         // Start new block file
2836         unsigned int nFile;
2837         unsigned int nBlockPos;
2838         if (!block.WriteToDisk(nFile, nBlockPos))
2839             return error("LoadBlockIndex() : writing genesis block to disk failed");
2840         if (!block.AddToBlockIndex(nFile, nBlockPos))
2841             return error("LoadBlockIndex() : genesis block not accepted");
2842
2843         // initialize synchronized checkpoint
2844         if (!Checkpoints::WriteSyncCheckpoint((!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet)))
2845             return error("LoadBlockIndex() : failed to init sync checkpoint");
2846
2847         // upgrade time set to zero if txdb initialized
2848         {
2849             if (!txdb.WriteModifierUpgradeTime(0))
2850                 return error("LoadBlockIndex() : failed to init upgrade info");
2851             printf(" Upgrade Info: ModifierUpgradeTime txdb initialization\n");
2852         }
2853     }
2854
2855     string strPubKey = "";
2856
2857     // if checkpoint master key changed must reset sync-checkpoint
2858     if (!txdb.ReadCheckpointPubKey(strPubKey) || strPubKey != CSyncCheckpoint::strMasterPubKey)
2859     {
2860         // write checkpoint master key to db
2861         txdb.TxnBegin();
2862         if (!txdb.WriteCheckpointPubKey(CSyncCheckpoint::strMasterPubKey))
2863             return error("LoadBlockIndex() : failed to write new checkpoint master key to db");
2864         if (!txdb.TxnCommit())
2865             return error("LoadBlockIndex() : failed to commit new checkpoint master key to db");
2866         if ((!fTestNet) && !Checkpoints::ResetSyncCheckpoint())
2867             return error("LoadBlockIndex() : failed to reset sync-checkpoint");
2868     }
2869
2870     // upgrade time set to zero if blocktreedb initialized
2871     if (txdb.ReadModifierUpgradeTime(nModifierUpgradeTime))
2872     {
2873         if (nModifierUpgradeTime)
2874             printf(" Upgrade Info: blocktreedb upgrade detected at timestamp %d\n", nModifierUpgradeTime);
2875         else
2876             printf(" Upgrade Info: no blocktreedb upgrade detected.\n");
2877     }
2878     else
2879     {
2880         nModifierUpgradeTime = GetTime();
2881         printf(" Upgrade Info: upgrading blocktreedb at timestamp %u\n", nModifierUpgradeTime);
2882         if (!txdb.WriteModifierUpgradeTime(nModifierUpgradeTime))
2883             return error("LoadBlockIndex() : failed to write upgrade info");
2884     }
2885
2886
2887     return true;
2888 }
2889
2890
2891
2892 void PrintBlockTree()
2893 {
2894     // pre-compute tree structure
2895     map<CBlockIndex*, vector<CBlockIndex*> > mapNext;
2896     for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
2897     {
2898         CBlockIndex* pindex = (*mi).second;
2899         mapNext[pindex->pprev].push_back(pindex);
2900         // test
2901         //while (rand() % 3 == 0)
2902         //    mapNext[pindex->pprev].push_back(pindex);
2903     }
2904
2905     vector<pair<int, CBlockIndex*> > vStack;
2906     vStack.push_back(make_pair(0, pindexGenesisBlock));
2907
2908     int nPrevCol = 0;
2909     while (!vStack.empty())
2910     {
2911         int nCol = vStack.back().first;
2912         CBlockIndex* pindex = vStack.back().second;
2913         vStack.pop_back();
2914
2915         // print split or gap
2916         if (nCol > nPrevCol)
2917         {
2918             for (int i = 0; i < nCol-1; i++)
2919                 printf("| ");
2920             printf("|\\\n");
2921         }
2922         else if (nCol < nPrevCol)
2923         {
2924             for (int i = 0; i < nCol; i++)
2925                 printf("| ");
2926             printf("|\n");
2927        }
2928         nPrevCol = nCol;
2929
2930         // print columns
2931         for (int i = 0; i < nCol; i++)
2932             printf("| ");
2933
2934         // print item
2935         CBlock block;
2936         block.ReadFromDisk(pindex);
2937         printf("%d (%u,%u) %s  %08x  %s  mint %7s  tx %"PRIszu"",
2938             pindex->nHeight,
2939             pindex->nFile,
2940             pindex->nBlockPos,
2941             block.GetHash().ToString().c_str(),
2942             block.nBits,
2943             DateTimeStrFormat("%x %H:%M:%S", block.GetBlockTime()).c_str(),
2944             FormatMoney(pindex->nMint).c_str(),
2945             block.vtx.size());
2946
2947         PrintWallets(block);
2948
2949         // put the main time-chain first
2950         vector<CBlockIndex*>& vNext = mapNext[pindex];
2951         for (unsigned int i = 0; i < vNext.size(); i++)
2952         {
2953             if (vNext[i]->pnext)
2954             {
2955                 swap(vNext[0], vNext[i]);
2956                 break;
2957             }
2958         }
2959
2960         // iterate children
2961         for (unsigned int i = 0; i < vNext.size(); i++)
2962             vStack.push_back(make_pair(nCol+i, vNext[i]));
2963     }
2964 }
2965
2966 bool LoadExternalBlockFile(FILE* fileIn)
2967 {
2968     int64 nStart = GetTimeMillis();
2969
2970     int nLoaded = 0;
2971     {
2972         LOCK(cs_main);
2973         try {
2974             CAutoFile blkdat(fileIn, SER_DISK, CLIENT_VERSION);
2975             unsigned int nPos = 0;
2976             while (nPos != (unsigned int)-1 && blkdat.good() && !fRequestShutdown)
2977             {
2978                 unsigned char pchData[65536];
2979                 do {
2980                     fseek(blkdat, nPos, SEEK_SET);
2981                     int nRead = fread(pchData, 1, sizeof(pchData), blkdat);
2982                     if (nRead <= 8)
2983                     {
2984                         nPos = (unsigned int)-1;
2985                         break;
2986                     }
2987                     void* nFind = memchr(pchData, pchMessageStart[0], nRead+1-sizeof(pchMessageStart));
2988                     if (nFind)
2989                     {
2990                         if (memcmp(nFind, pchMessageStart, sizeof(pchMessageStart))==0)
2991                         {
2992                             nPos += ((unsigned char*)nFind - pchData) + sizeof(pchMessageStart);
2993                             break;
2994                         }
2995                         nPos += ((unsigned char*)nFind - pchData) + 1;
2996                     }
2997                     else
2998                         nPos += sizeof(pchData) - sizeof(pchMessageStart) + 1;
2999                 } while(!fRequestShutdown);
3000                 if (nPos == (unsigned int)-1)
3001                     break;
3002                 fseek(blkdat, nPos, SEEK_SET);
3003                 unsigned int nSize;
3004                 blkdat >> nSize;
3005                 if (nSize > 0 && nSize <= MAX_BLOCK_SIZE)
3006                 {
3007                     CBlock block;
3008                     blkdat >> block;
3009                     if (ProcessBlock(NULL,&block))
3010                     {
3011                         nLoaded++;
3012                         nPos += 4 + nSize;
3013                     }
3014                 }
3015             }
3016         }
3017         catch (std::exception &e) {
3018             printf("%s() : Deserialize or I/O error caught during load\n",
3019                    __PRETTY_FUNCTION__);
3020         }
3021     }
3022     printf("Loaded %i blocks from external file in %"PRI64d"ms\n", nLoaded, GetTimeMillis() - nStart);
3023     return nLoaded > 0;
3024 }
3025
3026 //////////////////////////////////////////////////////////////////////////////
3027 //
3028 // CAlert
3029 //
3030
3031 extern map<uint256, CAlert> mapAlerts;
3032 extern CCriticalSection cs_mapAlerts;
3033
3034 string GetWarnings(string strFor)
3035 {
3036     int nPriority = 0;
3037     string strStatusBar;
3038     string strRPC;
3039
3040     if (GetBoolArg("-testsafemode"))
3041         strRPC = "test";
3042
3043     // Misc warnings like out of disk space and clock is wrong
3044     if (strMiscWarning != "")
3045     {
3046         nPriority = 1000;
3047         strStatusBar = strMiscWarning;
3048     }
3049
3050     // if detected unmet upgrade requirement enter safe mode
3051     // Note: Modifier upgrade requires blockchain redownload if past protocol switch
3052     if (IsFixedModifierInterval(nModifierUpgradeTime + 60*60*24)) // 1 day margin
3053     {
3054         nPriority = 5000;
3055         strStatusBar = strRPC = "WARNING: Blockchain redownload required approaching or past v.0.4.4.6u4 upgrade deadline.";
3056     }
3057
3058     // if detected invalid checkpoint enter safe mode
3059     if (Checkpoints::hashInvalidCheckpoint != 0)
3060     {
3061         nPriority = 3000;
3062         strStatusBar = strRPC = _("WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers.");
3063     }
3064
3065     // Alerts
3066     {
3067         LOCK(cs_mapAlerts);
3068         BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
3069         {
3070             const CAlert& alert = item.second;
3071             if (alert.AppliesToMe() && alert.nPriority > nPriority)
3072             {
3073                 nPriority = alert.nPriority;
3074                 strStatusBar = alert.strStatusBar;
3075                 if (nPriority > 1000)
3076                     strRPC = strStatusBar;
3077             }
3078         }
3079     }
3080
3081     if (strFor == "statusbar")
3082         return strStatusBar;
3083     else if (strFor == "rpc")
3084         return strRPC;
3085     assert(!"GetWarnings() : invalid parameter");
3086     return "error";
3087 }
3088
3089
3090
3091
3092
3093
3094
3095
3096 //////////////////////////////////////////////////////////////////////////////
3097 //
3098 // Messages
3099 //
3100
3101
3102 bool static AlreadyHave(CTxDB& txdb, const CInv& inv)
3103 {
3104     switch (inv.type)
3105     {
3106     case MSG_TX:
3107         {
3108         bool txInMap = false;
3109             {
3110             LOCK(mempool.cs);
3111             txInMap = (mempool.exists(inv.hash));
3112             }
3113         return txInMap ||
3114                mapOrphanTransactions.count(inv.hash) ||
3115                txdb.ContainsTx(inv.hash);
3116         }
3117
3118     case MSG_BLOCK:
3119         return mapBlockIndex.count(inv.hash) ||
3120                mapOrphanBlocks.count(inv.hash);
3121     }
3122     // Don't know what it is, just say we already got one
3123     return true;
3124 }
3125
3126
3127
3128
3129 // The message start string is designed to be unlikely to occur in normal data.
3130 // The characters are rarely used upper ASCII, not valid as UTF-8, and produce
3131 // a large 4-byte int at any alignment.
3132 unsigned char pchMessageStart[4] = { 0xe4, 0xe8, 0xe9, 0xe5 };
3133
3134 bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
3135 {
3136     static map<CService, CPubKey> mapReuseKey;
3137     RandAddSeedPerfmon();
3138     if (fDebug)
3139         printf("received: %s (%"PRIszu" bytes)\n", strCommand.c_str(), vRecv.size());
3140     if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0)
3141     {
3142         printf("dropmessagestest DROPPING RECV MESSAGE\n");
3143         return true;
3144     }
3145
3146     if (strCommand == "version")
3147     {
3148         // Each connection can only send one version message
3149         if (pfrom->nVersion != 0)
3150         {
3151             pfrom->Misbehaving(1);
3152             return false;
3153         }
3154
3155         int64 nTime;
3156         CAddress addrMe;
3157         CAddress addrFrom;
3158         uint64 nNonce = 1;
3159         vRecv >> pfrom->nVersion >> pfrom->nServices >> nTime >> addrMe;
3160         if (pfrom->nVersion < MIN_PROTO_VERSION)
3161         {
3162             // Since February 20, 2012, the protocol is initiated at version 209,
3163             // and earlier versions are no longer supported
3164             printf("partner %s using obsolete version %i; disconnecting\n", pfrom->addr.ToString().c_str(), pfrom->nVersion);
3165             pfrom->fDisconnect = true;
3166             return false;
3167         }
3168
3169         if (pfrom->nVersion == 10300)
3170             pfrom->nVersion = 300;
3171         if (!vRecv.empty())
3172             vRecv >> addrFrom >> nNonce;
3173         if (!vRecv.empty())
3174             vRecv >> pfrom->strSubVer;
3175         if (!vRecv.empty())
3176             vRecv >> pfrom->nStartingHeight;
3177
3178         if (pfrom->fInbound && addrMe.IsRoutable())
3179         {
3180             pfrom->addrLocal = addrMe;
3181             SeenLocal(addrMe);
3182         }
3183
3184         // Disconnect if we connected to ourself
3185         if (nNonce == nLocalHostNonce && nNonce > 1)
3186         {
3187             printf("connected to self at %s, disconnecting\n", pfrom->addr.ToString().c_str());
3188             pfrom->fDisconnect = true;
3189             return true;
3190         }
3191
3192         if (pfrom->nVersion < 60010)
3193         {
3194             printf("partner %s using a buggy client %d, disconnecting\n", pfrom->addr.ToString().c_str(), pfrom->nVersion);
3195             pfrom->fDisconnect = true;
3196             return true;
3197         }
3198
3199         // record my external IP reported by peer
3200         if (addrFrom.IsRoutable() && addrMe.IsRoutable())
3201             addrSeenByPeer = addrMe;
3202
3203         // Be shy and don't send version until we hear
3204         if (pfrom->fInbound)
3205             pfrom->PushVersion();
3206
3207         pfrom->fClient = !(pfrom->nServices & NODE_NETWORK);
3208
3209         AddTimeData(pfrom->addr, nTime);
3210
3211         // Change version
3212         pfrom->PushMessage("verack");
3213         pfrom->vSend.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
3214
3215         if (!pfrom->fInbound)
3216         {
3217             // Advertise our address
3218             if (!fNoListen && !IsInitialBlockDownload())
3219             {
3220                 CAddress addr = GetLocalAddress(&pfrom->addr);
3221                 if (addr.IsRoutable())
3222                     pfrom->PushAddress(addr);
3223             }
3224
3225             // Get recent addresses
3226             if (pfrom->fOneShot || pfrom->nVersion >= CADDR_TIME_VERSION || addrman.size() < 1000)
3227             {
3228                 pfrom->PushMessage("getaddr");
3229                 pfrom->fGetAddr = true;
3230             }
3231             addrman.Good(pfrom->addr);
3232         } else {
3233             if (((CNetAddr)pfrom->addr) == (CNetAddr)addrFrom)
3234             {
3235                 addrman.Add(addrFrom, addrFrom);
3236                 addrman.Good(addrFrom);
3237             }
3238         }
3239
3240         // Ask the first connected node for block updates
3241         static int nAskedForBlocks = 0;
3242         if (!pfrom->fClient && !pfrom->fOneShot &&
3243             (pfrom->nStartingHeight > (nBestHeight - 144)) &&
3244             (pfrom->nVersion < NOBLKS_VERSION_START ||
3245              pfrom->nVersion >= NOBLKS_VERSION_END) &&
3246              (nAskedForBlocks < 1 || vNodes.size() <= 1))
3247         {
3248             nAskedForBlocks++;
3249             pfrom->PushGetBlocks(pindexBest, uint256(0));
3250         }
3251
3252         // Relay alerts
3253         {
3254             LOCK(cs_mapAlerts);
3255             BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
3256                 item.second.RelayTo(pfrom);
3257         }
3258
3259         // Relay sync-checkpoint
3260         {
3261             LOCK(Checkpoints::cs_hashSyncCheckpoint);
3262             if (!Checkpoints::checkpointMessage.IsNull())
3263                 Checkpoints::checkpointMessage.RelayTo(pfrom);
3264         }
3265
3266         pfrom->fSuccessfullyConnected = true;
3267
3268         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());
3269
3270         cPeerBlockCounts.input(pfrom->nStartingHeight);
3271
3272         // ppcoin: ask for pending sync-checkpoint if any
3273         if (!IsInitialBlockDownload())
3274             Checkpoints::AskForPendingSyncCheckpoint(pfrom);
3275     }
3276
3277
3278     else if (pfrom->nVersion == 0)
3279     {
3280         // Must have a version message before anything else
3281         pfrom->Misbehaving(1);
3282         return false;
3283     }
3284
3285
3286     else if (strCommand == "verack")
3287     {
3288         pfrom->vRecv.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
3289     }
3290
3291
3292     else if (strCommand == "addr")
3293     {
3294         vector<CAddress> vAddr;
3295         vRecv >> vAddr;
3296
3297         // Don't want addr from older versions unless seeding
3298         if (pfrom->nVersion < CADDR_TIME_VERSION && addrman.size() > 1000)
3299             return true;
3300         if (vAddr.size() > 1000)
3301         {
3302             pfrom->Misbehaving(20);
3303             return error("message addr size() = %"PRIszu"", vAddr.size());
3304         }
3305
3306         // Store the new addresses
3307         vector<CAddress> vAddrOk;
3308         int64 nNow = GetAdjustedTime();
3309         int64 nSince = nNow - 10 * 60;
3310         BOOST_FOREACH(CAddress& addr, vAddr)
3311         {
3312             if (fShutdown)
3313                 return true;
3314             if (addr.nTime <= 100000000 || addr.nTime > nNow + 10 * 60)
3315                 addr.nTime = nNow - 5 * 24 * 60 * 60;
3316             pfrom->AddAddressKnown(addr);
3317             bool fReachable = IsReachable(addr);
3318             if (addr.nTime > nSince && !pfrom->fGetAddr && vAddr.size() <= 10 && addr.IsRoutable())
3319             {
3320                 // Relay to a limited number of other nodes
3321                 {
3322                     LOCK(cs_vNodes);
3323                     // Use deterministic randomness to send to the same nodes for 24 hours
3324                     // at a time so the setAddrKnowns of the chosen nodes prevent repeats
3325                     static uint256 hashSalt;
3326                     if (hashSalt == 0)
3327                         hashSalt = GetRandHash();
3328                     uint64 hashAddr = addr.GetHash();
3329                     uint256 hashRand = hashSalt ^ (hashAddr<<32) ^ ((GetTime()+hashAddr)/(24*60*60));
3330                     hashRand = Hash(BEGIN(hashRand), END(hashRand));
3331                     multimap<uint256, CNode*> mapMix;
3332                     BOOST_FOREACH(CNode* pnode, vNodes)
3333                     {
3334                         if (pnode->nVersion < CADDR_TIME_VERSION)
3335                             continue;
3336                         unsigned int nPointer;
3337                         memcpy(&nPointer, &pnode, sizeof(nPointer));
3338                         uint256 hashKey = hashRand ^ nPointer;
3339                         hashKey = Hash(BEGIN(hashKey), END(hashKey));
3340                         mapMix.insert(make_pair(hashKey, pnode));
3341                     }
3342                     int nRelayNodes = fReachable ? 2 : 1; // limited relaying of addresses outside our network(s)
3343                     for (multimap<uint256, CNode*>::iterator mi = mapMix.begin(); mi != mapMix.end() && nRelayNodes-- > 0; ++mi)
3344                         ((*mi).second)->PushAddress(addr);
3345                 }
3346             }
3347             // Do not store addresses outside our network
3348             if (fReachable)
3349                 vAddrOk.push_back(addr);
3350         }
3351         addrman.Add(vAddrOk, pfrom->addr, 2 * 60 * 60);
3352         if (vAddr.size() < 1000)
3353             pfrom->fGetAddr = false;
3354         if (pfrom->fOneShot)
3355             pfrom->fDisconnect = true;
3356     }
3357
3358     else if (strCommand == "inv")
3359     {
3360         vector<CInv> vInv;
3361         vRecv >> vInv;
3362         if (vInv.size() > MAX_INV_SZ)
3363         {
3364             pfrom->Misbehaving(20);
3365             return error("message inv size() = %"PRIszu"", vInv.size());
3366         }
3367
3368         // find last block in inv vector
3369         unsigned int nLastBlock = (unsigned int)(-1);
3370         for (unsigned int nInv = 0; nInv < vInv.size(); nInv++) {
3371             if (vInv[vInv.size() - 1 - nInv].type == MSG_BLOCK) {
3372                 nLastBlock = vInv.size() - 1 - nInv;
3373                 break;
3374             }
3375         }
3376         CTxDB txdb("r");
3377         for (unsigned int nInv = 0; nInv < vInv.size(); nInv++)
3378         {
3379             const CInv &inv = vInv[nInv];
3380
3381             if (fShutdown)
3382                 return true;
3383             pfrom->AddInventoryKnown(inv);
3384
3385             bool fAlreadyHave = AlreadyHave(txdb, inv);
3386             if (fDebug)
3387                 printf("  got inventory: %s  %s\n", inv.ToString().c_str(), fAlreadyHave ? "have" : "new");
3388
3389             if (!fAlreadyHave)
3390                 pfrom->AskFor(inv);
3391             else if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash)) {
3392                 pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(mapOrphanBlocks[inv.hash]));
3393             } else if (nInv == nLastBlock) {
3394                 // In case we are on a very long side-chain, it is possible that we already have
3395                 // the last block in an inv bundle sent in response to getblocks. Try to detect
3396                 // this situation and push another getblocks to continue.
3397                 pfrom->PushGetBlocks(mapBlockIndex[inv.hash], uint256(0));
3398                 if (fDebug)
3399                     printf("force request: %s\n", inv.ToString().c_str());
3400             }
3401
3402             // Track requests for our stuff
3403             Inventory(inv.hash);
3404         }
3405     }
3406
3407
3408     else if (strCommand == "getdata")
3409     {
3410         vector<CInv> vInv;
3411         vRecv >> vInv;
3412         if (vInv.size() > MAX_INV_SZ)
3413         {
3414             pfrom->Misbehaving(20);
3415             return error("message getdata size() = %"PRIszu"", vInv.size());
3416         }
3417
3418         if (fDebugNet || (vInv.size() != 1))
3419             printf("received getdata (%"PRIszu" invsz)\n", vInv.size());
3420
3421         BOOST_FOREACH(const CInv& inv, vInv)
3422         {
3423             if (fShutdown)
3424                 return true;
3425             if (fDebugNet || (vInv.size() == 1))
3426                 printf("received getdata for: %s\n", inv.ToString().c_str());
3427
3428             if (inv.type == MSG_BLOCK)
3429             {
3430                 // Send block from disk
3431                 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(inv.hash);
3432                 if (mi != mapBlockIndex.end())
3433                 {
3434                     CBlock block;
3435                     block.ReadFromDisk((*mi).second);
3436                     pfrom->PushMessage("block", block);
3437
3438                     // Trigger them to send a getblocks request for the next batch of inventory
3439                     if (inv.hash == pfrom->hashContinue)
3440                     {
3441                         // ppcoin: send latest proof-of-work block to allow the
3442                         // download node to accept as orphan (proof-of-stake 
3443                         // block might be rejected by stake connection check)
3444                         vector<CInv> vInv;
3445                         vInv.push_back(CInv(MSG_BLOCK, GetLastBlockIndex(pindexBest, false)->GetBlockHash()));
3446                         pfrom->PushMessage("inv", vInv);
3447                         pfrom->hashContinue = 0;
3448                     }
3449                 }
3450             }
3451             else if (inv.IsKnownType())
3452             {
3453                 // Send stream from relay memory
3454                 bool pushed = false;
3455                 {
3456                     LOCK(cs_mapRelay);
3457                     map<CInv, CDataStream>::iterator mi = mapRelay.find(inv);
3458                     if (mi != mapRelay.end()) {
3459                         pfrom->PushMessage(inv.GetCommand(), (*mi).second);
3460                         pushed = true;
3461                     }
3462                 }
3463                 if (!pushed && inv.type == MSG_TX) {
3464                     LOCK(mempool.cs);
3465                     if (mempool.exists(inv.hash)) {
3466                         CTransaction tx = mempool.lookup(inv.hash);
3467                         CDataStream ss(SER_NETWORK, PROTOCOL_VERSION);
3468                         ss.reserve(1000);
3469                         ss << tx;
3470                         pfrom->PushMessage("tx", ss);
3471                     }
3472                 }
3473             }
3474
3475             // Track requests for our stuff
3476             Inventory(inv.hash);
3477         }
3478     }
3479
3480
3481     else if (strCommand == "getblocks")
3482     {
3483         CBlockLocator locator;
3484         uint256 hashStop;
3485         vRecv >> locator >> hashStop;
3486
3487         // Find the last block the caller has in the main chain
3488         CBlockIndex* pindex = locator.GetBlockIndex();
3489
3490         // Send the rest of the chain
3491         if (pindex)
3492             pindex = pindex->pnext;
3493         int nLimit = 500;
3494         printf("getblocks %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit);
3495         for (; pindex; pindex = pindex->pnext)
3496         {
3497             if (pindex->GetBlockHash() == hashStop)
3498             {
3499                 printf("  getblocks stopping at %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str());
3500                 // ppcoin: tell downloading node about the latest block if it's
3501                 // without risk being rejected due to stake connection check
3502                 if (hashStop != hashBestChain && pindex->GetBlockTime() + nStakeMinAge > pindexBest->GetBlockTime())
3503                     pfrom->PushInventory(CInv(MSG_BLOCK, hashBestChain));
3504                 break;
3505             }
3506             pfrom->PushInventory(CInv(MSG_BLOCK, pindex->GetBlockHash()));
3507             if (--nLimit <= 0)
3508             {
3509                 // When this block is requested, we'll send an inv that'll make them
3510                 // getblocks the next batch of inventory.
3511                 printf("  getblocks stopping at limit %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str());
3512                 pfrom->hashContinue = pindex->GetBlockHash();
3513                 break;
3514             }
3515         }
3516     }
3517     else if (strCommand == "checkpoint")
3518     {
3519         CSyncCheckpoint checkpoint;
3520         vRecv >> checkpoint;
3521
3522         if (checkpoint.ProcessSyncCheckpoint(pfrom))
3523         {
3524             // Relay
3525             pfrom->hashCheckpointKnown = checkpoint.hashCheckpoint;
3526             LOCK(cs_vNodes);
3527             BOOST_FOREACH(CNode* pnode, vNodes)
3528                 checkpoint.RelayTo(pnode);
3529         }
3530     }
3531
3532     else if (strCommand == "getheaders")
3533     {
3534         CBlockLocator locator;
3535         uint256 hashStop;
3536         vRecv >> locator >> hashStop;
3537
3538         CBlockIndex* pindex = NULL;
3539         if (locator.IsNull())
3540         {
3541             // If locator is null, return the hashStop block
3542             map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashStop);
3543             if (mi == mapBlockIndex.end())
3544                 return true;
3545             pindex = (*mi).second;
3546         }
3547         else
3548         {
3549             // Find the last block the caller has in the main chain
3550             pindex = locator.GetBlockIndex();
3551             if (pindex)
3552                 pindex = pindex->pnext;
3553         }
3554
3555         vector<CBlock> vHeaders;
3556         int nLimit = 2000;
3557         printf("getheaders %d to %s\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str());
3558         for (; pindex; pindex = pindex->pnext)
3559         {
3560             vHeaders.push_back(pindex->GetBlockHeader());
3561             if (--nLimit <= 0 || pindex->GetBlockHash() == hashStop)
3562                 break;
3563         }
3564         pfrom->PushMessage("headers", vHeaders);
3565     }
3566
3567
3568     else if (strCommand == "tx")
3569     {
3570         vector<uint256> vWorkQueue;
3571         vector<uint256> vEraseQueue;
3572         CDataStream vMsg(vRecv);
3573         CTxDB txdb("r");
3574         CTransaction tx;
3575         vRecv >> tx;
3576
3577         CInv inv(MSG_TX, tx.GetHash());
3578         pfrom->AddInventoryKnown(inv);
3579
3580         bool fMissingInputs = false;
3581         if (tx.AcceptToMemoryPool(txdb, true, &fMissingInputs))
3582         {
3583             SyncWithWallets(tx, NULL, true);
3584             RelayTransaction(tx, inv.hash);
3585             mapAlreadyAskedFor.erase(inv);
3586             vWorkQueue.push_back(inv.hash);
3587             vEraseQueue.push_back(inv.hash);
3588
3589             // Recursively process any orphan transactions that depended on this one
3590             for (unsigned int i = 0; i < vWorkQueue.size(); i++)
3591             {
3592                 uint256 hashPrev = vWorkQueue[i];
3593                 for (set<uint256>::iterator mi = mapOrphanTransactionsByPrev[hashPrev].begin();
3594                      mi != mapOrphanTransactionsByPrev[hashPrev].end();
3595                      ++mi)
3596                 {
3597                     const uint256& orphanTxHash = *mi;
3598                     CTransaction& orphanTx = mapOrphanTransactions[orphanTxHash];
3599                     bool fMissingInputs2 = false;
3600
3601                     if (orphanTx.AcceptToMemoryPool(txdb, true, &fMissingInputs2))
3602                     {
3603                         printf("   accepted orphan tx %s\n", orphanTxHash.ToString().substr(0,10).c_str());
3604                         SyncWithWallets(tx, NULL, true);
3605                         RelayTransaction(orphanTx, orphanTxHash);
3606                         mapAlreadyAskedFor.erase(CInv(MSG_TX, orphanTxHash));
3607                         vWorkQueue.push_back(orphanTxHash);
3608                         vEraseQueue.push_back(orphanTxHash);
3609                     }
3610                     else if (!fMissingInputs2)
3611                     {
3612                         // invalid orphan
3613                         vEraseQueue.push_back(orphanTxHash);
3614                         printf("   removed invalid orphan tx %s\n", orphanTxHash.ToString().substr(0,10).c_str());
3615                     }
3616                 }
3617             }
3618
3619             BOOST_FOREACH(uint256 hash, vEraseQueue)
3620                 EraseOrphanTx(hash);
3621         }
3622         else if (fMissingInputs)
3623         {
3624             AddOrphanTx(tx);
3625
3626             // DoS prevention: do not allow mapOrphanTransactions to grow unbounded
3627             unsigned int nEvicted = LimitOrphanTxSize(MAX_ORPHAN_TRANSACTIONS);
3628             if (nEvicted > 0)
3629                 printf("mapOrphan overflow, removed %u tx\n", nEvicted);
3630         }
3631         if (tx.nDoS) pfrom->Misbehaving(tx.nDoS);
3632     }
3633
3634
3635     else if (strCommand == "block")
3636     {
3637         CBlock block;
3638         vRecv >> block;
3639         uint256 hashBlock = block.GetHash();
3640
3641         printf("received block %s\n", hashBlock.ToString().substr(0,20).c_str());
3642         // block.print();
3643
3644         CInv inv(MSG_BLOCK, hashBlock);
3645         pfrom->AddInventoryKnown(inv);
3646
3647         if (ProcessBlock(pfrom, &block))
3648             mapAlreadyAskedFor.erase(inv);
3649         if (block.nDoS) pfrom->Misbehaving(block.nDoS);
3650     }
3651
3652
3653     else if (strCommand == "getaddr")
3654     {
3655         // Don't return addresses older than nCutOff timestamp
3656         int64 nCutOff = GetTime() - (nNodeLifespan * 24 * 60 * 60);
3657         pfrom->vAddrToSend.clear();
3658         vector<CAddress> vAddr = addrman.GetAddr();
3659         BOOST_FOREACH(const CAddress &addr, vAddr)
3660             if(addr.nTime > nCutOff)
3661                 pfrom->PushAddress(addr);
3662     }
3663
3664
3665     else if (strCommand == "mempool")
3666     {
3667         std::vector<uint256> vtxid;
3668         mempool.queryHashes(vtxid);
3669         vector<CInv> vInv;
3670         for (unsigned int i = 0; i < vtxid.size(); i++) {
3671             CInv inv(MSG_TX, vtxid[i]);
3672             vInv.push_back(inv);
3673             if (i == (MAX_INV_SZ - 1))
3674                     break;
3675         }
3676         if (vInv.size() > 0)
3677             pfrom->PushMessage("inv", vInv);
3678     }
3679
3680
3681     else if (strCommand == "checkorder")
3682     {
3683         uint256 hashReply;
3684         vRecv >> hashReply;
3685
3686         if (!GetBoolArg("-allowreceivebyip"))
3687         {
3688             pfrom->PushMessage("reply", hashReply, (int)2, string(""));
3689             return true;
3690         }
3691
3692         CWalletTx order;
3693         vRecv >> order;
3694
3695         /// we have a chance to check the order here
3696
3697         // Keep giving the same key to the same ip until they use it
3698         if (!mapReuseKey.count(pfrom->addr))
3699             pwalletMain->GetKeyFromPool(mapReuseKey[pfrom->addr], true);
3700
3701         // Send back approval of order and pubkey to use
3702         CScript scriptPubKey;
3703         scriptPubKey << mapReuseKey[pfrom->addr] << OP_CHECKSIG;
3704         pfrom->PushMessage("reply", hashReply, (int)0, scriptPubKey);
3705     }
3706
3707
3708     else if (strCommand == "reply")
3709     {
3710         uint256 hashReply;
3711         vRecv >> hashReply;
3712
3713         CRequestTracker tracker;
3714         {
3715             LOCK(pfrom->cs_mapRequests);
3716             map<uint256, CRequestTracker>::iterator mi = pfrom->mapRequests.find(hashReply);
3717             if (mi != pfrom->mapRequests.end())
3718             {
3719                 tracker = (*mi).second;
3720                 pfrom->mapRequests.erase(mi);
3721             }
3722         }
3723         if (!tracker.IsNull())
3724             tracker.fn(tracker.param1, vRecv);
3725     }
3726
3727
3728     else if (strCommand == "ping")
3729     {
3730         if (pfrom->nVersion > BIP0031_VERSION)
3731         {
3732             uint64 nonce = 0;
3733             vRecv >> nonce;
3734             // Echo the message back with the nonce. This allows for two useful features:
3735             //
3736             // 1) A remote node can quickly check if the connection is operational
3737             // 2) Remote nodes can measure the latency of the network thread. If this node
3738             //    is overloaded it won't respond to pings quickly and the remote node can
3739             //    avoid sending us more work, like chain download requests.
3740             //
3741             // The nonce stops the remote getting confused between different pings: without
3742             // it, if the remote node sends a ping once per second and this node takes 5
3743             // seconds to respond to each, the 5th ping the remote sends would appear to
3744             // return very quickly.
3745             pfrom->PushMessage("pong", nonce);
3746         }
3747     }
3748
3749
3750     else if (strCommand == "alert")
3751     {
3752         CAlert alert;
3753         vRecv >> alert;
3754
3755         uint256 alertHash = alert.GetHash();
3756         if (pfrom->setKnown.count(alertHash) == 0)
3757         {
3758             if (alert.ProcessAlert())
3759             {
3760                 // Relay
3761                 pfrom->setKnown.insert(alertHash);
3762                 {
3763                     LOCK(cs_vNodes);
3764                     BOOST_FOREACH(CNode* pnode, vNodes)
3765                         alert.RelayTo(pnode);
3766                 }
3767             }
3768             else {
3769                 // Small DoS penalty so peers that send us lots of
3770                 // duplicate/expired/invalid-signature/whatever alerts
3771                 // eventually get banned.
3772                 // This isn't a Misbehaving(100) (immediate ban) because the
3773                 // peer might be an older or different implementation with
3774                 // a different signature key, etc.
3775                 pfrom->Misbehaving(10);
3776             }
3777         }
3778     }
3779
3780
3781     else
3782     {
3783         // Ignore unknown commands for extensibility
3784     }
3785
3786
3787     // Update the last seen time for this node's address
3788     if (pfrom->fNetworkNode)
3789         if (strCommand == "version" || strCommand == "addr" || strCommand == "inv" || strCommand == "getdata" || strCommand == "ping")
3790             AddressCurrentlyConnected(pfrom->addr);
3791
3792
3793     return true;
3794 }
3795
3796 bool ProcessMessages(CNode* pfrom)
3797 {
3798     CDataStream& vRecv = pfrom->vRecv;
3799     if (vRecv.empty())
3800         return true;
3801     //if (fDebug)
3802     //    printf("ProcessMessages(%u bytes)\n", vRecv.size());
3803
3804     //
3805     // Message format
3806     //  (4) message start
3807     //  (12) command
3808     //  (4) size
3809     //  (4) checksum
3810     //  (x) data
3811     //
3812
3813     while (true)
3814     {
3815         // Don't bother if send buffer is too full to respond anyway
3816         if (pfrom->vSend.size() >= SendBufferSize())
3817             break;
3818
3819         // Scan for message start
3820         CDataStream::iterator pstart = search(vRecv.begin(), vRecv.end(), BEGIN(pchMessageStart), END(pchMessageStart));
3821         int nHeaderSize = vRecv.GetSerializeSize(CMessageHeader());
3822         if (vRecv.end() - pstart < nHeaderSize)
3823         {
3824             if ((int)vRecv.size() > nHeaderSize)
3825             {
3826                 printf("\n\nPROCESSMESSAGE MESSAGESTART NOT FOUND\n\n");
3827                 vRecv.erase(vRecv.begin(), vRecv.end() - nHeaderSize);
3828             }
3829             break;
3830         }
3831         if (pstart - vRecv.begin() > 0)
3832             printf("\n\nPROCESSMESSAGE SKIPPED %"PRIpdd" BYTES\n\n", pstart - vRecv.begin());
3833         vRecv.erase(vRecv.begin(), pstart);
3834
3835         // Read header
3836         vector<char> vHeaderSave(vRecv.begin(), vRecv.begin() + nHeaderSize);
3837         CMessageHeader hdr;
3838         vRecv >> hdr;
3839         if (!hdr.IsValid())
3840         {
3841             printf("\n\nPROCESSMESSAGE: ERRORS IN HEADER %s\n\n\n", hdr.GetCommand().c_str());
3842             continue;
3843         }
3844         string strCommand = hdr.GetCommand();
3845
3846         // Message size
3847         unsigned int nMessageSize = hdr.nMessageSize;
3848         if (nMessageSize > MAX_SIZE)
3849         {
3850             printf("ProcessMessages(%s, %u bytes) : nMessageSize > MAX_SIZE\n", strCommand.c_str(), nMessageSize);
3851             continue;
3852         }
3853         if (nMessageSize > vRecv.size())
3854         {
3855             // Rewind and wait for rest of message
3856             vRecv.insert(vRecv.begin(), vHeaderSave.begin(), vHeaderSave.end());
3857             break;
3858         }
3859
3860         // Checksum
3861         uint256 hash = Hash(vRecv.begin(), vRecv.begin() + nMessageSize);
3862         unsigned int nChecksum = 0;
3863         memcpy(&nChecksum, &hash, sizeof(nChecksum));
3864         if (nChecksum != hdr.nChecksum)
3865         {
3866             printf("ProcessMessages(%s, %u bytes) : CHECKSUM ERROR nChecksum=%08x hdr.nChecksum=%08x\n",
3867                strCommand.c_str(), nMessageSize, nChecksum, hdr.nChecksum);
3868             continue;
3869         }
3870
3871         // Copy message to its own buffer
3872         CDataStream vMsg(vRecv.begin(), vRecv.begin() + nMessageSize, vRecv.nType, vRecv.nVersion);
3873         vRecv.ignore(nMessageSize);
3874
3875         // Process message
3876         bool fRet = false;
3877         try
3878         {
3879             {
3880                 LOCK(cs_main);
3881                 fRet = ProcessMessage(pfrom, strCommand, vMsg);
3882             }
3883             if (fShutdown)
3884                 return true;
3885         }
3886         catch (std::ios_base::failure& e)
3887         {
3888             if (strstr(e.what(), "end of data"))
3889             {
3890                 // Allow exceptions from under-length message on vRecv
3891                 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());
3892             }
3893             else if (strstr(e.what(), "size too large"))
3894             {
3895                 // Allow exceptions from over-long size
3896                 printf("ProcessMessages(%s, %u bytes) : Exception '%s' caught\n", strCommand.c_str(), nMessageSize, e.what());
3897             }
3898             else
3899             {
3900                 PrintExceptionContinue(&e, "ProcessMessages()");
3901             }
3902         }
3903         catch (std::exception& e) {
3904             PrintExceptionContinue(&e, "ProcessMessages()");
3905         } catch (...) {
3906             PrintExceptionContinue(NULL, "ProcessMessages()");
3907         }
3908
3909         if (!fRet)
3910             printf("ProcessMessage(%s, %u bytes) FAILED\n", strCommand.c_str(), nMessageSize);
3911     }
3912
3913     vRecv.Compact();
3914     return true;
3915 }
3916
3917
3918 bool SendMessages(CNode* pto, bool fSendTrickle)
3919 {
3920     TRY_LOCK(cs_main, lockMain);
3921     if (lockMain) {
3922         // Don't send anything until we get their version message
3923         if (pto->nVersion == 0)
3924             return true;
3925
3926         // Keep-alive ping. We send a nonce of zero because we don't use it anywhere
3927         // right now.
3928         if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSend.empty()) {
3929             uint64 nonce = 0;
3930             if (pto->nVersion > BIP0031_VERSION)
3931                 pto->PushMessage("ping", nonce);
3932             else
3933                 pto->PushMessage("ping");
3934         }
3935
3936         // Resend wallet transactions that haven't gotten in a block yet
3937         ResendWalletTransactions();
3938
3939         // Address refresh broadcast
3940         static int64 nLastRebroadcast;
3941         if (!IsInitialBlockDownload() && (GetTime() - nLastRebroadcast > 24 * 60 * 60))
3942         {
3943             {
3944                 LOCK(cs_vNodes);
3945                 BOOST_FOREACH(CNode* pnode, vNodes)
3946                 {
3947                     // Periodically clear setAddrKnown to allow refresh broadcasts
3948                     if (nLastRebroadcast)
3949                         pnode->setAddrKnown.clear();
3950
3951                     // Rebroadcast our address
3952                     if (!fNoListen)
3953                     {
3954                         CAddress addr = GetLocalAddress(&pnode->addr);
3955                         if (addr.IsRoutable())
3956                             pnode->PushAddress(addr);
3957                     }
3958                 }
3959             }
3960             nLastRebroadcast = GetTime();
3961         }
3962
3963         //
3964         // Message: addr
3965         //
3966         if (fSendTrickle)
3967         {
3968             vector<CAddress> vAddr;
3969             vAddr.reserve(pto->vAddrToSend.size());
3970             BOOST_FOREACH(const CAddress& addr, pto->vAddrToSend)
3971             {
3972                 // returns true if wasn't already contained in the set
3973                 if (pto->setAddrKnown.insert(addr).second)
3974                 {
3975                     vAddr.push_back(addr);
3976                     // receiver rejects addr messages larger than 1000
3977                     if (vAddr.size() >= 1000)
3978                     {
3979                         pto->PushMessage("addr", vAddr);
3980                         vAddr.clear();
3981                     }
3982                 }
3983             }
3984             pto->vAddrToSend.clear();
3985             if (!vAddr.empty())
3986                 pto->PushMessage("addr", vAddr);
3987         }
3988
3989
3990         //
3991         // Message: inventory
3992         //
3993         vector<CInv> vInv;
3994         vector<CInv> vInvWait;
3995         {
3996             LOCK(pto->cs_inventory);
3997             vInv.reserve(pto->vInventoryToSend.size());
3998             vInvWait.reserve(pto->vInventoryToSend.size());
3999             BOOST_FOREACH(const CInv& inv, pto->vInventoryToSend)
4000             {
4001                 if (pto->setInventoryKnown.count(inv))
4002                     continue;
4003
4004                 // trickle out tx inv to protect privacy
4005                 if (inv.type == MSG_TX && !fSendTrickle)
4006                 {
4007                     // 1/4 of tx invs blast to all immediately
4008                     static uint256 hashSalt;
4009                     if (hashSalt == 0)
4010                         hashSalt = GetRandHash();
4011                     uint256 hashRand = inv.hash ^ hashSalt;
4012                     hashRand = Hash(BEGIN(hashRand), END(hashRand));
4013                     bool fTrickleWait = ((hashRand & 3) != 0);
4014
4015                     // always trickle our own transactions
4016                     if (!fTrickleWait)
4017                     {
4018                         CWalletTx wtx;
4019                         if (GetTransaction(inv.hash, wtx))
4020                             if (wtx.fFromMe)
4021                                 fTrickleWait = true;
4022                     }
4023
4024                     if (fTrickleWait)
4025                     {
4026                         vInvWait.push_back(inv);
4027                         continue;
4028                     }
4029                 }
4030
4031                 // returns true if wasn't already contained in the set
4032                 if (pto->setInventoryKnown.insert(inv).second)
4033                 {
4034                     vInv.push_back(inv);
4035                     if (vInv.size() >= 1000)
4036                     {
4037                         pto->PushMessage("inv", vInv);
4038                         vInv.clear();
4039                     }
4040                 }
4041             }
4042             pto->vInventoryToSend = vInvWait;
4043         }
4044         if (!vInv.empty())
4045             pto->PushMessage("inv", vInv);
4046
4047
4048         //
4049         // Message: getdata
4050         //
4051         vector<CInv> vGetData;
4052         int64 nNow = GetTime() * 1000000;
4053         CTxDB txdb("r");
4054         while (!pto->mapAskFor.empty() && (*pto->mapAskFor.begin()).first <= nNow)
4055         {
4056             const CInv& inv = (*pto->mapAskFor.begin()).second;
4057             if (!AlreadyHave(txdb, inv))
4058             {
4059                 if (fDebugNet)
4060                     printf("sending getdata: %s\n", inv.ToString().c_str());
4061                 vGetData.push_back(inv);
4062                 if (vGetData.size() >= 1000)
4063                 {
4064                     pto->PushMessage("getdata", vGetData);
4065                     vGetData.clear();
4066                 }
4067                 mapAlreadyAskedFor[inv] = nNow;
4068             }
4069             pto->mapAskFor.erase(pto->mapAskFor.begin());
4070         }
4071         if (!vGetData.empty())
4072             pto->PushMessage("getdata", vGetData);
4073
4074     }
4075     return true;
4076 }