PPCoin: Move vchBlockSig to after vtx and fix CDiskTxPos calculation
[novacoin.git] / src / main.h
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2011 The Bitcoin developers
3 // Copyright (c) 2011-2012 The PPCoin developers
4 // Distributed under the MIT/X11 software license, see the accompanying
5 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
6 #ifndef BITCOIN_MAIN_H
7 #define BITCOIN_MAIN_H
8
9 #include "bignum.h"
10 #include "net.h"
11 #include "key.h"
12 #include "script.h"
13 #include "db.h"
14
15 #include <list>
16
17 class CBlock;
18 class CBlockIndex;
19 class CWalletTx;
20 class CWallet;
21 class CKeyItem;
22 class CReserveKey;
23 class CWalletDB;
24
25 class CAddress;
26 class CInv;
27 class CRequestTracker;
28 class CNode;
29 class CBlockIndex;
30
31 static const unsigned int MAX_BLOCK_SIZE = 1000000;
32 static const unsigned int MAX_BLOCK_SIZE_GEN = MAX_BLOCK_SIZE/2;
33 static const int MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50;
34 static const int64 COIN = 1000000;
35 static const int64 CENT = 10000;
36 static const int64 MIN_TX_FEE = 10000;
37 static const int64 MIN_RELAY_TX_FEE = 10000;
38 static const int64 MAX_MONEY = 2000000000 * COIN;
39 inline bool MoneyRange(int64 nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); }
40 static const int COINBASE_MATURITY = 100;
41 // Threshold for nLockTime: below this value it is interpreted as block number, otherwise as UNIX timestamp.
42 static const int LOCKTIME_THRESHOLD = 500000000; // Tue Nov  5 00:53:20 1985 UTC
43 #ifdef USE_UPNP
44 static const int fHaveUPnP = true;
45 #else
46 static const int fHaveUPnP = false;
47 #endif
48
49
50
51
52
53
54 extern CCriticalSection cs_main;
55 extern std::map<uint256, CBlockIndex*> mapBlockIndex;
56 extern uint256 hashGenesisBlock;
57 extern CBlockIndex* pindexGenesisBlock;
58 extern int nBestHeight;
59 extern uint64 nBestChainTrust;
60 extern uint64 nBestInvalidTrust;
61 extern uint256 hashBestChain;
62 extern CBlockIndex* pindexBest;
63 extern unsigned int nTransactionsUpdated;
64 extern double dHashesPerSec;
65 extern int64 nHPSTimerStart;
66 extern int64 nTimeBestReceived;
67 extern CCriticalSection cs_setpwalletRegistered;
68 extern std::set<CWallet*> setpwalletRegistered;
69
70 // Settings
71 extern int fGenerateBitcoins;
72 extern int64 nTransactionFee;
73 extern int fLimitProcessors;
74 extern int nLimitProcessors;
75 extern int fMinimizeToTray;
76 extern int fMinimizeOnClose;
77 extern int fUseUPnP;
78 extern int64 nBalanceReserve;
79
80
81
82
83
84 class CReserveKey;
85 class CTxDB;
86 class CTxIndex;
87
88 void RegisterWallet(CWallet* pwalletIn);
89 void UnregisterWallet(CWallet* pwalletIn);
90 bool ProcessBlock(CNode* pfrom, CBlock* pblock);
91 bool CheckDiskSpace(uint64 nAdditionalBytes=0);
92 FILE* OpenBlockFile(unsigned int nFile, unsigned int nBlockPos, const char* pszMode="rb");
93 FILE* AppendBlockFile(unsigned int& nFileRet);
94 bool LoadBlockIndex(bool fAllowNew=true);
95 void PrintBlockTree();
96 bool ProcessMessages(CNode* pfrom);
97 bool SendMessages(CNode* pto, bool fSendTrickle);
98 void GenerateBitcoins(bool fGenerate, CWallet* pwallet);
99 CBlock* CreateNewBlock(CWallet* pwallet);
100 void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& nExtraNonce);
101 void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1);
102 bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey);
103 bool CheckProofOfWork(uint256 hash, unsigned int nBits);
104 int64 GetProofOfStakeReward(int64 nCoinAge);
105 unsigned int ComputeMinWork(unsigned int nBase, int64 nTime);
106 int GetNumBlocksOfPeers();
107 bool IsInitialBlockDownload();
108 std::string GetWarnings(std::string strFor);
109
110
111
112
113
114
115
116
117
118
119
120
121 bool GetWalletFile(CWallet* pwallet, std::string &strWalletFileOut);
122
123 template<typename T>
124 bool WriteSetting(const std::string& strKey, const T& value)
125 {
126     bool fOk = false;
127     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
128     {
129         std::string strWalletFile;
130         if (!GetWalletFile(pwallet, strWalletFile))
131             continue;
132         fOk |= CWalletDB(strWalletFile).WriteSetting(strKey, value);
133     }
134     return fOk;
135 }
136
137
138 class CDiskTxPos
139 {
140 public:
141     unsigned int nFile;
142     unsigned int nBlockPos;
143     unsigned int nTxPos;
144
145     CDiskTxPos()
146     {
147         SetNull();
148     }
149
150     CDiskTxPos(unsigned int nFileIn, unsigned int nBlockPosIn, unsigned int nTxPosIn)
151     {
152         nFile = nFileIn;
153         nBlockPos = nBlockPosIn;
154         nTxPos = nTxPosIn;
155     }
156
157     IMPLEMENT_SERIALIZE( READWRITE(FLATDATA(*this)); )
158     void SetNull() { nFile = -1; nBlockPos = 0; nTxPos = 0; }
159     bool IsNull() const { return (nFile == -1); }
160
161     friend bool operator==(const CDiskTxPos& a, const CDiskTxPos& b)
162     {
163         return (a.nFile     == b.nFile &&
164                 a.nBlockPos == b.nBlockPos &&
165                 a.nTxPos    == b.nTxPos);
166     }
167
168     friend bool operator!=(const CDiskTxPos& a, const CDiskTxPos& b)
169     {
170         return !(a == b);
171     }
172
173     std::string ToString() const
174     {
175         if (IsNull())
176             return strprintf("null");
177         else
178             return strprintf("(nFile=%d, nBlockPos=%d, nTxPos=%d)", nFile, nBlockPos, nTxPos);
179     }
180
181     void print() const
182     {
183         printf("%s", ToString().c_str());
184     }
185 };
186
187
188
189
190 class CInPoint
191 {
192 public:
193     CTransaction* ptx;
194     unsigned int n;
195
196     CInPoint() { SetNull(); }
197     CInPoint(CTransaction* ptxIn, unsigned int nIn) { ptx = ptxIn; n = nIn; }
198     void SetNull() { ptx = NULL; n = -1; }
199     bool IsNull() const { return (ptx == NULL && n == -1); }
200 };
201
202
203
204
205 class COutPoint
206 {
207 public:
208     uint256 hash;
209     unsigned int n;
210
211     COutPoint() { SetNull(); }
212     COutPoint(uint256 hashIn, unsigned int nIn) { hash = hashIn; n = nIn; }
213     IMPLEMENT_SERIALIZE( READWRITE(FLATDATA(*this)); )
214     void SetNull() { hash = 0; n = -1; }
215     bool IsNull() const { return (hash == 0 && n == -1); }
216
217     friend bool operator<(const COutPoint& a, const COutPoint& b)
218     {
219         return (a.hash < b.hash || (a.hash == b.hash && a.n < b.n));
220     }
221
222     friend bool operator==(const COutPoint& a, const COutPoint& b)
223     {
224         return (a.hash == b.hash && a.n == b.n);
225     }
226
227     friend bool operator!=(const COutPoint& a, const COutPoint& b)
228     {
229         return !(a == b);
230     }
231
232     std::string ToString() const
233     {
234         return strprintf("COutPoint(%s, %d)", hash.ToString().substr(0,10).c_str(), n);
235     }
236
237     void print() const
238     {
239         printf("%s\n", ToString().c_str());
240     }
241 };
242
243
244
245
246 //
247 // An input of a transaction.  It contains the location of the previous
248 // transaction's output that it claims and a signature that matches the
249 // output's public key.
250 //
251 class CTxIn
252 {
253 public:
254     COutPoint prevout;
255     CScript scriptSig;
256     unsigned int nSequence;
257
258     CTxIn()
259     {
260         nSequence = UINT_MAX;
261     }
262
263     explicit CTxIn(COutPoint prevoutIn, CScript scriptSigIn=CScript(), unsigned int nSequenceIn=UINT_MAX)
264     {
265         prevout = prevoutIn;
266         scriptSig = scriptSigIn;
267         nSequence = nSequenceIn;
268     }
269
270     CTxIn(uint256 hashPrevTx, unsigned int nOut, CScript scriptSigIn=CScript(), unsigned int nSequenceIn=UINT_MAX)
271     {
272         prevout = COutPoint(hashPrevTx, nOut);
273         scriptSig = scriptSigIn;
274         nSequence = nSequenceIn;
275     }
276
277     IMPLEMENT_SERIALIZE
278     (
279         READWRITE(prevout);
280         READWRITE(scriptSig);
281         READWRITE(nSequence);
282     )
283
284     bool IsFinal() const
285     {
286         return (nSequence == UINT_MAX);
287     }
288
289     friend bool operator==(const CTxIn& a, const CTxIn& b)
290     {
291         return (a.prevout   == b.prevout &&
292                 a.scriptSig == b.scriptSig &&
293                 a.nSequence == b.nSequence);
294     }
295
296     friend bool operator!=(const CTxIn& a, const CTxIn& b)
297     {
298         return !(a == b);
299     }
300
301     std::string ToString() const
302     {
303         std::string str;
304         str += strprintf("CTxIn(");
305         str += prevout.ToString();
306         if (prevout.IsNull())
307             str += strprintf(", coinbase %s", HexStr(scriptSig).c_str());
308         else
309             str += strprintf(", scriptSig=%s", scriptSig.ToString().substr(0,24).c_str());
310         if (nSequence != UINT_MAX)
311             str += strprintf(", nSequence=%u", nSequence);
312         str += ")";
313         return str;
314     }
315
316     void print() const
317     {
318         printf("%s\n", ToString().c_str());
319     }
320 };
321
322
323
324
325 //
326 // An output of a transaction.  It contains the public key that the next input
327 // must be able to sign with to claim it.
328 //
329 class CTxOut
330 {
331 public:
332     int64 nValue;
333     CScript scriptPubKey;
334
335     CTxOut()
336     {
337         SetNull();
338     }
339
340     CTxOut(int64 nValueIn, CScript scriptPubKeyIn)
341     {
342         nValue = nValueIn;
343         scriptPubKey = scriptPubKeyIn;
344     }
345
346     IMPLEMENT_SERIALIZE
347     (
348         READWRITE(nValue);
349         READWRITE(scriptPubKey);
350     )
351
352     void SetNull()
353     {
354         nValue = -1;
355         scriptPubKey.clear();
356     }
357
358     bool IsNull()
359     {
360         return (nValue == -1);
361     }
362
363     bool IsCoinStake() const
364     {
365         return (nValue == 0 && scriptPubKey.empty());
366     }
367
368     uint256 GetHash() const
369     {
370         return SerializeHash(*this);
371     }
372
373     friend bool operator==(const CTxOut& a, const CTxOut& b)
374     {
375         return (a.nValue       == b.nValue &&
376                 a.scriptPubKey == b.scriptPubKey);
377     }
378
379     friend bool operator!=(const CTxOut& a, const CTxOut& b)
380     {
381         return !(a == b);
382     }
383
384     std::string ToString() const
385     {
386         if (IsCoinStake()) return "CTxOut(coinstake)";
387         if (scriptPubKey.size() < 6)
388             return "CTxOut(error)";
389         return strprintf("CTxOut(nValue=%s, scriptPubKey=%s)", FormatMoney(nValue).c_str(), scriptPubKey.ToString().substr(0,30).c_str());
390     }
391
392     void print() const
393     {
394         printf("%s\n", ToString().c_str());
395     }
396 };
397
398
399
400
401 //
402 // The basic transaction that is broadcasted on the network and contained in
403 // blocks.  A transaction can contain multiple inputs and outputs.
404 //
405 class CTransaction
406 {
407 public:
408     int nVersion;
409     unsigned int nTime;
410     std::vector<CTxIn> vin;
411     std::vector<CTxOut> vout;
412     unsigned int nLockTime;
413
414     // Denial-of-service detection:
415     mutable int nDoS;
416     bool DoS(int nDoSIn, bool fIn) const { nDoS += nDoSIn; return fIn; }
417
418     CTransaction()
419     {
420         SetNull();
421     }
422
423     IMPLEMENT_SERIALIZE
424     (
425         READWRITE(this->nVersion);
426         nVersion = this->nVersion;
427         READWRITE(nTime);
428         READWRITE(vin);
429         READWRITE(vout);
430         READWRITE(nLockTime);
431     )
432
433     void SetNull()
434     {
435         nVersion = 1;
436         nTime = GetAdjustedTime();
437         vin.clear();
438         vout.clear();
439         nLockTime = 0;
440         nDoS = 0;  // Denial-of-service prevention
441     }
442
443     bool IsNull() const
444     {
445         return (vin.empty() && vout.empty());
446     }
447
448     uint256 GetHash() const
449     {
450         return SerializeHash(*this);
451     }
452
453     bool IsFinal(int nBlockHeight=0, int64 nBlockTime=0) const
454     {
455         // Time based nLockTime implemented in 0.1.6
456         if (nLockTime == 0)
457             return true;
458         if (nBlockHeight == 0)
459             nBlockHeight = nBestHeight;
460         if (nBlockTime == 0)
461             nBlockTime = GetAdjustedTime();
462         if ((int64)nLockTime < (nLockTime < LOCKTIME_THRESHOLD ? (int64)nBlockHeight : nBlockTime))
463             return true;
464         BOOST_FOREACH(const CTxIn& txin, vin)
465             if (!txin.IsFinal())
466                 return false;
467         return true;
468     }
469
470     bool IsNewerThan(const CTransaction& old) const
471     {
472         if (vin.size() != old.vin.size())
473             return false;
474         for (int i = 0; i < vin.size(); i++)
475             if (vin[i].prevout != old.vin[i].prevout)
476                 return false;
477
478         bool fNewer = false;
479         unsigned int nLowest = UINT_MAX;
480         for (int i = 0; i < vin.size(); i++)
481         {
482             if (vin[i].nSequence != old.vin[i].nSequence)
483             {
484                 if (vin[i].nSequence <= nLowest)
485                 {
486                     fNewer = false;
487                     nLowest = vin[i].nSequence;
488                 }
489                 if (old.vin[i].nSequence < nLowest)
490                 {
491                     fNewer = true;
492                     nLowest = old.vin[i].nSequence;
493                 }
494             }
495         }
496         return fNewer;
497     }
498
499     bool IsCoinBase() const
500     {
501         return (vin.size() == 1 && vin[0].prevout.IsNull() && vout.size() == 1);
502     }
503
504     bool IsCoinStake() const
505     {
506         // ppcoin: the coin stake transaction is marked with the first output empty
507         return (vout.size() == 2 && vout[0].IsCoinStake());
508     }
509
510     int GetSigOpCount() const
511     {
512         int n = 0;
513         BOOST_FOREACH(const CTxIn& txin, vin)
514             n += txin.scriptSig.GetSigOpCount();
515         BOOST_FOREACH(const CTxOut& txout, vout)
516             n += txout.scriptPubKey.GetSigOpCount();
517         return n;
518     }
519
520     bool IsStandard() const
521     {
522         BOOST_FOREACH(const CTxIn& txin, vin)
523             if (!txin.scriptSig.IsPushOnly())
524                 return error("nonstandard txin: %s", txin.scriptSig.ToString().c_str());
525         BOOST_FOREACH(const CTxOut& txout, vout)
526             if (!::IsStandard(txout.scriptPubKey))
527                 return error("nonstandard txout: %s", txout.scriptPubKey.ToString().c_str());
528         return true;
529     }
530
531     int64 GetValueOut() const
532     {
533         int64 nValueOut = 0;
534         BOOST_FOREACH(const CTxOut& txout, vout)
535         {
536             nValueOut += txout.nValue;
537             if (!MoneyRange(txout.nValue) || !MoneyRange(nValueOut))
538                 throw std::runtime_error("CTransaction::GetValueOut() : value out of range");
539         }
540         return nValueOut;
541     }
542
543     static bool AllowFree(double dPriority)
544     {
545         // Large (in bytes) low-priority (new, small-coin) transactions
546         // need a fee.
547         return dPriority > COIN * 144 / 250;
548     }
549
550     int64 GetMinFee(unsigned int nBlockSize=1, bool fAllowFree=false, bool fForRelay=false) const
551     {
552         // Base fee is either MIN_TX_FEE or MIN_RELAY_TX_FEE
553         int64 nBaseFee = fForRelay ? MIN_RELAY_TX_FEE : MIN_TX_FEE;
554
555         unsigned int nBytes = ::GetSerializeSize(*this, SER_NETWORK);
556         unsigned int nNewBlockSize = nBlockSize + nBytes;
557         int64 nMinFee = (1 + (int64)nBytes / 1000) * nBaseFee;
558
559         if (fAllowFree)
560         {
561             if (nBlockSize == 1)
562             {
563                 // Transactions under 10K are free
564                 // (about 4500bc if made of 50bc inputs)
565                 if (nBytes < 10000)
566                     nMinFee = 0;
567             }
568             else
569             {
570                 // Free transaction area
571                 if (nNewBlockSize < 27000)
572                     nMinFee = 0;
573             }
574         }
575
576         // To limit dust spam, require MIN_TX_FEE/MIN_RELAY_TX_FEE if any output is less than 0.01
577         if (nMinFee < nBaseFee)
578             BOOST_FOREACH(const CTxOut& txout, vout)
579                 if (txout.nValue < CENT)
580                     nMinFee = nBaseFee;
581
582         // Raise the price as the block approaches full
583         if (nBlockSize != 1 && nNewBlockSize >= MAX_BLOCK_SIZE_GEN/2)
584         {
585             if (nNewBlockSize >= MAX_BLOCK_SIZE_GEN)
586                 return MAX_MONEY;
587             nMinFee *= MAX_BLOCK_SIZE_GEN / (MAX_BLOCK_SIZE_GEN - nNewBlockSize);
588         }
589
590         if (!MoneyRange(nMinFee))
591             nMinFee = MAX_MONEY;
592         return nMinFee;
593     }
594
595
596     bool ReadFromDisk(CDiskTxPos pos, FILE** pfileRet=NULL)
597     {
598         CAutoFile filein = OpenBlockFile(pos.nFile, 0, pfileRet ? "rb+" : "rb");
599         if (!filein)
600             return error("CTransaction::ReadFromDisk() : OpenBlockFile failed");
601
602         // Read transaction
603         if (fseek(filein, pos.nTxPos, SEEK_SET) != 0)
604             return error("CTransaction::ReadFromDisk() : fseek failed");
605         filein >> *this;
606
607         // Return file pointer
608         if (pfileRet)
609         {
610             if (fseek(filein, pos.nTxPos, SEEK_SET) != 0)
611                 return error("CTransaction::ReadFromDisk() : second fseek failed");
612             *pfileRet = filein.release();
613         }
614         return true;
615     }
616
617     friend bool operator==(const CTransaction& a, const CTransaction& b)
618     {
619         return (a.nVersion  == b.nVersion &&
620                 a.nTime     == b.nTime &&
621                 a.vin       == b.vin &&
622                 a.vout      == b.vout &&
623                 a.nLockTime == b.nLockTime);
624     }
625
626     friend bool operator!=(const CTransaction& a, const CTransaction& b)
627     {
628         return !(a == b);
629     }
630
631
632     std::string ToString() const
633     {
634         std::string str;
635         str += strprintf("CTransaction(hash=%s, nTime=%d, ver=%d, vin.size=%d, vout.size=%d, nLockTime=%d)\n",
636             GetHash().ToString().substr(0,10).c_str(),
637             nTime,
638             nVersion,
639             vin.size(),
640             vout.size(),
641             nLockTime);
642         for (int i = 0; i < vin.size(); i++)
643             str += "    " + vin[i].ToString() + "\n";
644         for (int i = 0; i < vout.size(); i++)
645             str += "    " + vout[i].ToString() + "\n";
646         return str;
647     }
648
649     void print() const
650     {
651         printf("%s", ToString().c_str());
652     }
653
654
655     bool ReadFromDisk(CTxDB& txdb, COutPoint prevout, CTxIndex& txindexRet);
656     bool ReadFromDisk(CTxDB& txdb, COutPoint prevout);
657     bool ReadFromDisk(COutPoint prevout);
658     bool DisconnectInputs(CTxDB& txdb);
659     bool ConnectInputs(CTxDB& txdb, std::map<uint256, CTxIndex>& mapTestPool, CDiskTxPos posThisTx,
660                        CBlockIndex* pindexBlock, int64& nFees, bool fBlock, bool fMiner, int64 nMinFee=0);
661     bool ClientConnectInputs();
662     bool CheckTransaction() const;
663     bool AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs=true, bool* pfMissingInputs=NULL);
664     bool AcceptToMemoryPool(bool fCheckInputs=true, bool* pfMissingInputs=NULL);
665 protected:
666     bool AddToMemoryPoolUnchecked();
667 public:
668     bool RemoveFromMemoryPool();
669     bool GetCoinAge(CTxDB& txdb, uint64& nCoinAge) const;  // ppcoin: get transaction coin age
670 };
671
672
673
674
675
676 //
677 // A transaction with a merkle branch linking it to the block chain
678 //
679 class CMerkleTx : public CTransaction
680 {
681 public:
682     uint256 hashBlock;
683     std::vector<uint256> vMerkleBranch;
684     int nIndex;
685
686     // memory only
687     mutable char fMerkleVerified;
688
689
690     CMerkleTx()
691     {
692         Init();
693     }
694
695     CMerkleTx(const CTransaction& txIn) : CTransaction(txIn)
696     {
697         Init();
698     }
699
700     void Init()
701     {
702         hashBlock = 0;
703         nIndex = -1;
704         fMerkleVerified = false;
705     }
706
707
708     IMPLEMENT_SERIALIZE
709     (
710         nSerSize += SerReadWrite(s, *(CTransaction*)this, nType, nVersion, ser_action);
711         nVersion = this->nVersion;
712         READWRITE(hashBlock);
713         READWRITE(vMerkleBranch);
714         READWRITE(nIndex);
715     )
716
717
718     int SetMerkleBranch(const CBlock* pblock=NULL);
719     int GetDepthInMainChain(int& nHeightRet) const;
720     int GetDepthInMainChain() const { int nHeight; return GetDepthInMainChain(nHeight); }
721     bool IsInMainChain() const { return GetDepthInMainChain() > 0; }
722     int GetBlocksToMaturity() const;
723     bool AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs=true);
724     bool AcceptToMemoryPool();
725 };
726
727
728
729
730 //
731 // A txdb record that contains the disk location of a transaction and the
732 // locations of transactions that spend its outputs.  vSpent is really only
733 // used as a flag, but having the location is very helpful for debugging.
734 //
735 class CTxIndex
736 {
737 public:
738     CDiskTxPos pos;
739     std::vector<CDiskTxPos> vSpent;
740
741     CTxIndex()
742     {
743         SetNull();
744     }
745
746     CTxIndex(const CDiskTxPos& posIn, unsigned int nOutputs)
747     {
748         pos = posIn;
749         vSpent.resize(nOutputs);
750     }
751
752     IMPLEMENT_SERIALIZE
753     (
754         if (!(nType & SER_GETHASH))
755             READWRITE(nVersion);
756         READWRITE(pos);
757         READWRITE(vSpent);
758     )
759
760     void SetNull()
761     {
762         pos.SetNull();
763         vSpent.clear();
764     }
765
766     bool IsNull()
767     {
768         return pos.IsNull();
769     }
770
771     friend bool operator==(const CTxIndex& a, const CTxIndex& b)
772     {
773         return (a.pos    == b.pos &&
774                 a.vSpent == b.vSpent);
775     }
776
777     friend bool operator!=(const CTxIndex& a, const CTxIndex& b)
778     {
779         return !(a == b);
780     }
781     int GetDepthInMainChain() const;
782 };
783
784
785
786
787
788 //
789 // Nodes collect new transactions into a block, hash them into a hash tree,
790 // and scan through nonce values to make the block's hash satisfy proof-of-work
791 // requirements.  When they solve the proof-of-work, they broadcast the block
792 // to everyone and the block is added to the block chain.  The first transaction
793 // in the block is a special one that creates a new coin owned by the creator
794 // of the block.
795 //
796 // Blocks are appended to blk0001.dat files on disk.  Their location on disk
797 // is indexed by CBlockIndex objects in memory.
798 //
799 class CBlock
800 {
801 public:
802     // header
803     int nVersion;
804     uint256 hashPrevBlock;
805     uint256 hashMerkleRoot;
806     unsigned int nTime;
807     unsigned int nBits;
808     unsigned int nNonce;
809
810     // network and disk
811     std::vector<CTransaction> vtx;
812
813     // ppcoin: block signature - signed by coin base txout[0]'s owner
814     std::vector<unsigned char> vchBlockSig;
815
816     // memory only
817     mutable std::vector<uint256> vMerkleTree;
818
819     // Denial-of-service detection:
820     mutable int nDoS;
821     bool DoS(int nDoSIn, bool fIn) const { nDoS += nDoSIn; return fIn; }
822
823     CBlock()
824     {
825         SetNull();
826     }
827
828     IMPLEMENT_SERIALIZE
829     (
830         READWRITE(this->nVersion);
831         nVersion = this->nVersion;
832         READWRITE(hashPrevBlock);
833         READWRITE(hashMerkleRoot);
834         READWRITE(nTime);
835         READWRITE(nBits);
836         READWRITE(nNonce);
837
838         // ConnectBlock depends on vtx following header to generate CDiskTxPos
839         if (!(nType & (SER_GETHASH|SER_BLOCKHEADERONLY)))
840         {
841             READWRITE(vtx);
842             READWRITE(vchBlockSig);
843         }
844         else if (fRead)
845         {
846             const_cast<CBlock*>(this)->vtx.clear();
847             const_cast<CBlock*>(this)->vchBlockSig.clear();
848         }
849     )
850
851     void SetNull()
852     {
853         nVersion = 1;
854         hashPrevBlock = 0;
855         hashMerkleRoot = 0;
856         nTime = 0;
857         nBits = 0;
858         nNonce = 0;
859         vtx.clear();
860         vchBlockSig.clear();
861         vMerkleTree.clear();
862         nDoS = 0;
863     }
864
865     bool IsNull() const
866     {
867         return (nBits == 0);
868     }
869
870     uint256 GetHash() const
871     {
872         return Hash(BEGIN(nVersion), END(nNonce));
873     }
874
875     int64 GetBlockTime() const
876     {
877         return (int64)nTime;
878     }
879
880     // ppcoin: get max transaction timestamp
881     int64 GetMaxTransactionTime() const
882     {
883         int64 maxTransactionTime = 0;
884         BOOST_FOREACH(const CTransaction& tx, vtx)
885             maxTransactionTime = std::max(maxTransactionTime, (int64)tx.nTime);
886         return maxTransactionTime;
887     }
888
889     int GetSigOpCount() const
890     {
891         int n = 0;
892         BOOST_FOREACH(const CTransaction& tx, vtx)
893             n += tx.GetSigOpCount();
894         return n;
895     }
896
897
898     uint256 BuildMerkleTree() const
899     {
900         vMerkleTree.clear();
901         BOOST_FOREACH(const CTransaction& tx, vtx)
902             vMerkleTree.push_back(tx.GetHash());
903         int j = 0;
904         for (int nSize = vtx.size(); nSize > 1; nSize = (nSize + 1) / 2)
905         {
906             for (int i = 0; i < nSize; i += 2)
907             {
908                 int i2 = std::min(i+1, nSize-1);
909                 vMerkleTree.push_back(Hash(BEGIN(vMerkleTree[j+i]),  END(vMerkleTree[j+i]),
910                                            BEGIN(vMerkleTree[j+i2]), END(vMerkleTree[j+i2])));
911             }
912             j += nSize;
913         }
914         return (vMerkleTree.empty() ? 0 : vMerkleTree.back());
915     }
916
917     std::vector<uint256> GetMerkleBranch(int nIndex) const
918     {
919         if (vMerkleTree.empty())
920             BuildMerkleTree();
921         std::vector<uint256> vMerkleBranch;
922         int j = 0;
923         for (int nSize = vtx.size(); nSize > 1; nSize = (nSize + 1) / 2)
924         {
925             int i = std::min(nIndex^1, nSize-1);
926             vMerkleBranch.push_back(vMerkleTree[j+i]);
927             nIndex >>= 1;
928             j += nSize;
929         }
930         return vMerkleBranch;
931     }
932
933     static uint256 CheckMerkleBranch(uint256 hash, const std::vector<uint256>& vMerkleBranch, int nIndex)
934     {
935         if (nIndex == -1)
936             return 0;
937         BOOST_FOREACH(const uint256& otherside, vMerkleBranch)
938         {
939             if (nIndex & 1)
940                 hash = Hash(BEGIN(otherside), END(otherside), BEGIN(hash), END(hash));
941             else
942                 hash = Hash(BEGIN(hash), END(hash), BEGIN(otherside), END(otherside));
943             nIndex >>= 1;
944         }
945         return hash;
946     }
947
948
949     bool WriteToDisk(unsigned int& nFileRet, unsigned int& nBlockPosRet)
950     {
951         // Open history file to append
952         CAutoFile fileout = AppendBlockFile(nFileRet);
953         if (!fileout)
954             return error("CBlock::WriteToDisk() : AppendBlockFile failed");
955
956         // Write index header
957         unsigned int nSize = fileout.GetSerializeSize(*this);
958         fileout << FLATDATA(pchMessageStart) << nSize;
959
960         // Write block
961         nBlockPosRet = ftell(fileout);
962         if (nBlockPosRet == -1)
963             return error("CBlock::WriteToDisk() : ftell failed");
964         fileout << *this;
965
966         // Flush stdio buffers and commit to disk before returning
967         fflush(fileout);
968         if (!IsInitialBlockDownload() || (nBestHeight+1) % 500 == 0)
969         {
970 #ifdef WIN32
971             _commit(_fileno(fileout));
972 #else
973             fsync(fileno(fileout));
974 #endif
975         }
976
977         return true;
978     }
979
980     bool ReadFromDisk(unsigned int nFile, unsigned int nBlockPos, bool fReadTransactions=true)
981     {
982         SetNull();
983
984         // Open history file to read
985         CAutoFile filein = OpenBlockFile(nFile, nBlockPos, "rb");
986         if (!filein)
987             return error("CBlock::ReadFromDisk() : OpenBlockFile failed");
988         if (!fReadTransactions)
989             filein.nType |= SER_BLOCKHEADERONLY;
990
991         // Read block
992         filein >> *this;
993
994         // Check the header
995         if (!CheckProofOfWork(GetHash(), nBits))
996             return error("CBlock::ReadFromDisk() : errors in block header");
997
998         return true;
999     }
1000
1001
1002
1003     void print() const
1004     {
1005         printf("CBlock(hash=%s, ver=%d, hashPrevBlock=%s, hashMerkleRoot=%s, nTime=%u, nBits=%08x, nNonce=%u, vtx=%d, vchBlockSig=%s)\n",
1006             GetHash().ToString().substr(0,20).c_str(),
1007             nVersion,
1008             hashPrevBlock.ToString().substr(0,20).c_str(),
1009             hashMerkleRoot.ToString().substr(0,10).c_str(),
1010             nTime, nBits, nNonce,
1011             vtx.size(),
1012             HexStr(vchBlockSig.begin(), vchBlockSig.end()).c_str());
1013         for (int i = 0; i < vtx.size(); i++)
1014         {
1015             printf("  ");
1016             vtx[i].print();
1017         }
1018         printf("  vMerkleTree: ");
1019         for (int i = 0; i < vMerkleTree.size(); i++)
1020             printf("%s ", vMerkleTree[i].ToString().substr(0,10).c_str());
1021         printf("\n");
1022     }
1023
1024
1025     bool SignBlock(const CKeyStore& keystore)
1026     {
1027         std::vector<std::pair<opcodetype, valtype> > vSolution;
1028
1029         if (!Solver(vtx[0].vout[0].scriptPubKey, vSolution))
1030             return false;
1031         BOOST_FOREACH(PAIRTYPE(opcodetype, valtype)& item, vSolution)
1032         {
1033             if (item.first == OP_PUBKEY)
1034             {
1035                 // Sign
1036                 const valtype& vchPubKey = item.second;
1037                 CKey key;
1038                 if (!keystore.GetKey(Hash160(vchPubKey), key))
1039                     return false;
1040                 if (key.GetPubKey() != vchPubKey)
1041                     return false;
1042                 return key.Sign(GetHash(), vchBlockSig);
1043             }
1044         }
1045         return false;
1046     }
1047
1048     bool CheckBlockSignature() const
1049     {
1050         if (GetHash() == hashGenesisBlock)
1051             return vchBlockSig.empty();
1052
1053         std::vector<std::pair<opcodetype, valtype> > vSolution;
1054
1055         if (!Solver(vtx[0].vout[0].scriptPubKey, vSolution))
1056             return false;
1057         BOOST_FOREACH(PAIRTYPE(opcodetype, valtype)& item, vSolution)
1058         {
1059             if (item.first == OP_PUBKEY)
1060             {
1061                 const valtype& vchPubKey = item.second;
1062                 CKey key;
1063                 if (!key.SetPubKey(vchPubKey))
1064                     return false;
1065                 if (vchBlockSig.empty())
1066                     return false;
1067                 return key.Verify(GetHash(), vchBlockSig);
1068             }
1069         }
1070         return false;
1071     }
1072
1073     bool DisconnectBlock(CTxDB& txdb, CBlockIndex* pindex);
1074     bool ConnectBlock(CTxDB& txdb, CBlockIndex* pindex);
1075     bool ReadFromDisk(const CBlockIndex* pindex, bool fReadTransactions=true);
1076     bool SetBestChain(CTxDB& txdb, CBlockIndex* pindexNew);
1077     bool AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos);
1078     bool CheckBlock() const;
1079     bool AcceptBlock();
1080     bool GetCoinAge(uint64& nCoinAge) const; // ppcoin: calculate total coin age spent in block
1081 };
1082
1083
1084
1085
1086
1087
1088 //
1089 // The block chain is a tree shaped structure starting with the
1090 // genesis block at the root, with each block potentially having multiple
1091 // candidates to be the next block.  pprev and pnext link a path through the
1092 // main/longest chain.  A blockindex may have multiple pprev pointing back
1093 // to it, but pnext will only point forward to the longest branch, or will
1094 // be null if the block is not part of the longest chain.
1095 //
1096 class CBlockIndex
1097 {
1098 public:
1099     const uint256* phashBlock;
1100     CBlockIndex* pprev;
1101     CBlockIndex* pnext;
1102     unsigned int nFile;
1103     unsigned int nBlockPos;
1104     uint64 nChainTrust;// ppcoin: trust score of chain, in the unit of coin-days
1105     int nHeight;
1106     int nCheckpoint;    // ppcoin: chain auto checkpoint height
1107
1108     // block header
1109     int nVersion;
1110     uint256 hashMerkleRoot;
1111     unsigned int nTime;
1112     unsigned int nBits;
1113     unsigned int nNonce;
1114
1115
1116     CBlockIndex()
1117     {
1118         phashBlock = NULL;
1119         pprev = NULL;
1120         pnext = NULL;
1121         nFile = 0;
1122         nBlockPos = 0;
1123         nHeight = 0;
1124         nChainTrust = 0;
1125         nCheckpoint = 0;
1126
1127         nVersion       = 0;
1128         hashMerkleRoot = 0;
1129         nTime          = 0;
1130         nBits          = 0;
1131         nNonce         = 0;
1132     }
1133
1134     CBlockIndex(unsigned int nFileIn, unsigned int nBlockPosIn, CBlock& block)
1135     {
1136         phashBlock = NULL;
1137         pprev = NULL;
1138         pnext = NULL;
1139         nFile = nFileIn;
1140         nBlockPos = nBlockPosIn;
1141         nHeight = 0;
1142         nChainTrust = 0;
1143         nCheckpoint = 0;
1144
1145         nVersion       = block.nVersion;
1146         hashMerkleRoot = block.hashMerkleRoot;
1147         nTime          = block.nTime;
1148         nBits          = block.nBits;
1149         nNonce         = block.nNonce;
1150     }
1151
1152     CBlock GetBlockHeader() const
1153     {
1154         CBlock block;
1155         block.nVersion       = nVersion;
1156         if (pprev)
1157             block.hashPrevBlock = pprev->GetBlockHash();
1158         block.hashMerkleRoot = hashMerkleRoot;
1159         block.nTime          = nTime;
1160         block.nBits          = nBits;
1161         block.nNonce         = nNonce;
1162         return block;
1163     }
1164
1165     uint256 GetBlockHash() const
1166     {
1167         return *phashBlock;
1168     }
1169
1170     int64 GetBlockTime() const
1171     {
1172         return (int64)nTime;
1173     }
1174
1175     int64 GetBlockTrust() const
1176     {
1177         return (nChainTrust - (pprev? pprev->nChainTrust : 0));
1178     }
1179
1180     bool IsInMainChain() const
1181     {
1182         return (pnext || this == pindexBest);
1183     }
1184
1185     bool CheckIndex() const
1186     {
1187         return CheckProofOfWork(GetBlockHash(), nBits);
1188     }
1189
1190     bool EraseBlockFromDisk()
1191     {
1192         // Open history file
1193         CAutoFile fileout = OpenBlockFile(nFile, nBlockPos, "rb+");
1194         if (!fileout)
1195             return false;
1196
1197         // Overwrite with empty null block
1198         CBlock block;
1199         block.SetNull();
1200         fileout << block;
1201
1202         return true;
1203     }
1204
1205     enum { nMedianTimeSpan=11 };
1206
1207     int64 GetMedianTimePast() const
1208     {
1209         int64 pmedian[nMedianTimeSpan];
1210         int64* pbegin = &pmedian[nMedianTimeSpan];
1211         int64* pend = &pmedian[nMedianTimeSpan];
1212
1213         const CBlockIndex* pindex = this;
1214         for (int i = 0; i < nMedianTimeSpan && pindex; i++, pindex = pindex->pprev)
1215             *(--pbegin) = pindex->GetBlockTime();
1216
1217         std::sort(pbegin, pend);
1218         return pbegin[(pend - pbegin)/2];
1219     }
1220
1221     int64 GetMedianTime() const
1222     {
1223         const CBlockIndex* pindex = this;
1224         for (int i = 0; i < nMedianTimeSpan/2; i++)
1225         {
1226             if (!pindex->pnext)
1227                 return GetBlockTime();
1228             pindex = pindex->pnext;
1229         }
1230         return pindex->GetMedianTimePast();
1231     }
1232
1233
1234
1235     std::string ToString() const
1236     {
1237         return strprintf("CBlockIndex(nprev=%08x, pnext=%08x, nFile=%d, nBlockPos=%-6d nChainTrust=%"PRI64d" nHeight=%d, nCheckpoint=%d, merkle=%s, hashBlock=%s)",
1238             pprev, pnext, nFile, nBlockPos, nChainTrust, nHeight, nCheckpoint,
1239             hashMerkleRoot.ToString().substr(0,10).c_str(),
1240             GetBlockHash().ToString().substr(0,20).c_str());
1241     }
1242
1243     void print() const
1244     {
1245         printf("%s\n", ToString().c_str());
1246     }
1247 };
1248
1249
1250
1251 //
1252 // Used to marshal pointers into hashes for db storage.
1253 //
1254 class CDiskBlockIndex : public CBlockIndex
1255 {
1256 public:
1257     uint256 hashPrev;
1258     uint256 hashNext;
1259
1260     CDiskBlockIndex()
1261     {
1262         hashPrev = 0;
1263         hashNext = 0;
1264     }
1265
1266     explicit CDiskBlockIndex(CBlockIndex* pindex) : CBlockIndex(*pindex)
1267     {
1268         hashPrev = (pprev ? pprev->GetBlockHash() : 0);
1269         hashNext = (pnext ? pnext->GetBlockHash() : 0);
1270     }
1271
1272     IMPLEMENT_SERIALIZE
1273     (
1274         if (!(nType & SER_GETHASH))
1275             READWRITE(nVersion);
1276
1277         READWRITE(hashNext);
1278         READWRITE(nFile);
1279         READWRITE(nBlockPos);
1280         READWRITE(nChainTrust);
1281         READWRITE(nHeight);
1282         READWRITE(nCheckpoint);
1283
1284         // block header
1285         READWRITE(this->nVersion);
1286         READWRITE(hashPrev);
1287         READWRITE(hashMerkleRoot);
1288         READWRITE(nTime);
1289         READWRITE(nBits);
1290         READWRITE(nNonce);
1291     )
1292
1293     uint256 GetBlockHash() const
1294     {
1295         CBlock block;
1296         block.nVersion        = nVersion;
1297         block.hashPrevBlock   = hashPrev;
1298         block.hashMerkleRoot  = hashMerkleRoot;
1299         block.nTime           = nTime;
1300         block.nBits           = nBits;
1301         block.nNonce          = nNonce;
1302         return block.GetHash();
1303     }
1304
1305
1306     std::string ToString() const
1307     {
1308         std::string str = "CDiskBlockIndex(";
1309         str += CBlockIndex::ToString();
1310         str += strprintf("\n                hashBlock=%s, hashPrev=%s, hashNext=%s)",
1311             GetBlockHash().ToString().c_str(),
1312             hashPrev.ToString().substr(0,20).c_str(),
1313             hashNext.ToString().substr(0,20).c_str());
1314         return str;
1315     }
1316
1317     void print() const
1318     {
1319         printf("%s\n", ToString().c_str());
1320     }
1321 };
1322
1323
1324
1325
1326
1327
1328
1329
1330 //
1331 // Describes a place in the block chain to another node such that if the
1332 // other node doesn't have the same branch, it can find a recent common trunk.
1333 // The further back it is, the further before the fork it may be.
1334 //
1335 class CBlockLocator
1336 {
1337 protected:
1338     std::vector<uint256> vHave;
1339 public:
1340
1341     CBlockLocator()
1342     {
1343     }
1344
1345     explicit CBlockLocator(const CBlockIndex* pindex)
1346     {
1347         Set(pindex);
1348     }
1349
1350     explicit CBlockLocator(uint256 hashBlock)
1351     {
1352         std::map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock);
1353         if (mi != mapBlockIndex.end())
1354             Set((*mi).second);
1355     }
1356
1357     IMPLEMENT_SERIALIZE
1358     (
1359         if (!(nType & SER_GETHASH))
1360             READWRITE(nVersion);
1361         READWRITE(vHave);
1362     )
1363
1364     void SetNull()
1365     {
1366         vHave.clear();
1367     }
1368
1369     bool IsNull()
1370     {
1371         return vHave.empty();
1372     }
1373
1374     void Set(const CBlockIndex* pindex)
1375     {
1376         vHave.clear();
1377         int nStep = 1;
1378         while (pindex)
1379         {
1380             vHave.push_back(pindex->GetBlockHash());
1381
1382             // Exponentially larger steps back
1383             for (int i = 0; pindex && i < nStep; i++)
1384                 pindex = pindex->pprev;
1385             if (vHave.size() > 10)
1386                 nStep *= 2;
1387         }
1388         vHave.push_back(hashGenesisBlock);
1389     }
1390
1391     int GetDistanceBack()
1392     {
1393         // Retrace how far back it was in the sender's branch
1394         int nDistance = 0;
1395         int nStep = 1;
1396         BOOST_FOREACH(const uint256& hash, vHave)
1397         {
1398             std::map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hash);
1399             if (mi != mapBlockIndex.end())
1400             {
1401                 CBlockIndex* pindex = (*mi).second;
1402                 if (pindex->IsInMainChain())
1403                     return nDistance;
1404             }
1405             nDistance += nStep;
1406             if (nDistance > 10)
1407                 nStep *= 2;
1408         }
1409         return nDistance;
1410     }
1411
1412     CBlockIndex* GetBlockIndex()
1413     {
1414         // Find the first block the caller has in the main chain
1415         BOOST_FOREACH(const uint256& hash, vHave)
1416         {
1417             std::map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hash);
1418             if (mi != mapBlockIndex.end())
1419             {
1420                 CBlockIndex* pindex = (*mi).second;
1421                 if (pindex->IsInMainChain())
1422                     return pindex;
1423             }
1424         }
1425         return pindexGenesisBlock;
1426     }
1427
1428     uint256 GetBlockHash()
1429     {
1430         // Find the first block the caller has in the main chain
1431         BOOST_FOREACH(const uint256& hash, vHave)
1432         {
1433             std::map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hash);
1434             if (mi != mapBlockIndex.end())
1435             {
1436                 CBlockIndex* pindex = (*mi).second;
1437                 if (pindex->IsInMainChain())
1438                     return hash;
1439             }
1440         }
1441         return hashGenesisBlock;
1442     }
1443
1444     int GetHeight()
1445     {
1446         CBlockIndex* pindex = GetBlockIndex();
1447         if (!pindex)
1448             return 0;
1449         return pindex->nHeight;
1450     }
1451 };
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461 //
1462 // Alerts are for notifying old versions if they become too obsolete and
1463 // need to upgrade.  The message is displayed in the status bar.
1464 // Alert messages are broadcast as a vector of signed data.  Unserializing may
1465 // not read the entire buffer if the alert is for a newer version, but older
1466 // versions can still relay the original data.
1467 //
1468 class CUnsignedAlert
1469 {
1470 public:
1471     int nVersion;
1472     int64 nRelayUntil;      // when newer nodes stop relaying to newer nodes
1473     int64 nExpiration;
1474     int nID;
1475     int nCancel;
1476     std::set<int> setCancel;
1477     int nMinVer;            // lowest version inclusive
1478     int nMaxVer;            // highest version inclusive
1479     std::set<std::string> setSubVer;  // empty matches all
1480     int nPriority;
1481
1482     // Actions
1483     std::string strComment;
1484     std::string strStatusBar;
1485     std::string strReserved;
1486
1487     IMPLEMENT_SERIALIZE
1488     (
1489         READWRITE(this->nVersion);
1490         nVersion = this->nVersion;
1491         READWRITE(nRelayUntil);
1492         READWRITE(nExpiration);
1493         READWRITE(nID);
1494         READWRITE(nCancel);
1495         READWRITE(setCancel);
1496         READWRITE(nMinVer);
1497         READWRITE(nMaxVer);
1498         READWRITE(setSubVer);
1499         READWRITE(nPriority);
1500
1501         READWRITE(strComment);
1502         READWRITE(strStatusBar);
1503         READWRITE(strReserved);
1504     )
1505
1506     void SetNull()
1507     {
1508         nVersion = 1;
1509         nRelayUntil = 0;
1510         nExpiration = 0;
1511         nID = 0;
1512         nCancel = 0;
1513         setCancel.clear();
1514         nMinVer = 0;
1515         nMaxVer = 0;
1516         setSubVer.clear();
1517         nPriority = 0;
1518
1519         strComment.clear();
1520         strStatusBar.clear();
1521         strReserved.clear();
1522     }
1523
1524     std::string ToString() const
1525     {
1526         std::string strSetCancel;
1527         BOOST_FOREACH(int n, setCancel)
1528             strSetCancel += strprintf("%d ", n);
1529         std::string strSetSubVer;
1530         BOOST_FOREACH(std::string str, setSubVer)
1531             strSetSubVer += "\"" + str + "\" ";
1532         return strprintf(
1533                 "CAlert(\n"
1534                 "    nVersion     = %d\n"
1535                 "    nRelayUntil  = %"PRI64d"\n"
1536                 "    nExpiration  = %"PRI64d"\n"
1537                 "    nID          = %d\n"
1538                 "    nCancel      = %d\n"
1539                 "    setCancel    = %s\n"
1540                 "    nMinVer      = %d\n"
1541                 "    nMaxVer      = %d\n"
1542                 "    setSubVer    = %s\n"
1543                 "    nPriority    = %d\n"
1544                 "    strComment   = \"%s\"\n"
1545                 "    strStatusBar = \"%s\"\n"
1546                 ")\n",
1547             nVersion,
1548             nRelayUntil,
1549             nExpiration,
1550             nID,
1551             nCancel,
1552             strSetCancel.c_str(),
1553             nMinVer,
1554             nMaxVer,
1555             strSetSubVer.c_str(),
1556             nPriority,
1557             strComment.c_str(),
1558             strStatusBar.c_str());
1559     }
1560
1561     void print() const
1562     {
1563         printf("%s", ToString().c_str());
1564     }
1565 };
1566
1567 class CAlert : public CUnsignedAlert
1568 {
1569 public:
1570     std::vector<unsigned char> vchMsg;
1571     std::vector<unsigned char> vchSig;
1572
1573     CAlert()
1574     {
1575         SetNull();
1576     }
1577
1578     IMPLEMENT_SERIALIZE
1579     (
1580         READWRITE(vchMsg);
1581         READWRITE(vchSig);
1582     )
1583
1584     void SetNull()
1585     {
1586         CUnsignedAlert::SetNull();
1587         vchMsg.clear();
1588         vchSig.clear();
1589     }
1590
1591     bool IsNull() const
1592     {
1593         return (nExpiration == 0);
1594     }
1595
1596     uint256 GetHash() const
1597     {
1598         return SerializeHash(*this);
1599     }
1600
1601     bool IsInEffect() const
1602     {
1603         return (GetAdjustedTime() < nExpiration);
1604     }
1605
1606     bool Cancels(const CAlert& alert) const
1607     {
1608         if (!IsInEffect())
1609             return false; // this was a no-op before 31403
1610         return (alert.nID <= nCancel || setCancel.count(alert.nID));
1611     }
1612
1613     bool AppliesTo(int nVersion, std::string strSubVerIn) const
1614     {
1615         return (IsInEffect() &&
1616                 nMinVer <= nVersion && nVersion <= nMaxVer &&
1617                 (setSubVer.empty() || setSubVer.count(strSubVerIn)));
1618     }
1619
1620     bool AppliesToMe() const
1621     {
1622         return AppliesTo(VERSION, ::pszSubVer);
1623     }
1624
1625     bool RelayTo(CNode* pnode) const
1626     {
1627         if (!IsInEffect())
1628             return false;
1629         // returns true if wasn't already contained in the set
1630         if (pnode->setKnown.insert(GetHash()).second)
1631         {
1632             if (AppliesTo(pnode->nVersion, pnode->strSubVer) ||
1633                 AppliesToMe() ||
1634                 GetAdjustedTime() < nRelayUntil)
1635             {
1636                 pnode->PushMessage("alert", *this);
1637                 return true;
1638             }
1639         }
1640         return false;
1641     }
1642
1643     bool CheckSignature()
1644     {
1645         CKey key;
1646         if (!key.SetPubKey(ParseHex("04fc9702847840aaf195de8442ebecedf5b095cdbb9bc716bda9110971b28a49e0ead8564ff0db22209e0374782c093bb899692d524e9d6a6956e7c5ecbcd68284")))
1647             return error("CAlert::CheckSignature() : SetPubKey failed");
1648         if (!key.Verify(Hash(vchMsg.begin(), vchMsg.end()), vchSig))
1649             return error("CAlert::CheckSignature() : verify signature failed");
1650
1651         // Now unserialize the data
1652         CDataStream sMsg(vchMsg);
1653         sMsg >> *(CUnsignedAlert*)this;
1654         return true;
1655     }
1656
1657     bool ProcessAlert();
1658 };
1659
1660 #endif