PPCoin: RPC command 'reservebalance'
[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     // memory only
814     mutable std::vector<uint256> vMerkleTree;
815
816     // Denial-of-service detection:
817     mutable int nDoS;
818     bool DoS(int nDoSIn, bool fIn) const { nDoS += nDoSIn; return fIn; }
819
820     CBlock()
821     {
822         SetNull();
823     }
824
825     IMPLEMENT_SERIALIZE
826     (
827         READWRITE(this->nVersion);
828         nVersion = this->nVersion;
829         READWRITE(hashPrevBlock);
830         READWRITE(hashMerkleRoot);
831         READWRITE(nTime);
832         READWRITE(nBits);
833         READWRITE(nNonce);
834
835         // ConnectBlock depends on vtx being last so it can calculate offset
836         if (!(nType & (SER_GETHASH|SER_BLOCKHEADERONLY)))
837             READWRITE(vtx);
838         else if (fRead)
839             const_cast<CBlock*>(this)->vtx.clear();
840     )
841
842     void SetNull()
843     {
844         nVersion = 1;
845         hashPrevBlock = 0;
846         hashMerkleRoot = 0;
847         nTime = 0;
848         nBits = 0;
849         nNonce = 0;
850         vtx.clear();
851         vMerkleTree.clear();
852         nDoS = 0;
853     }
854
855     bool IsNull() const
856     {
857         return (nBits == 0);
858     }
859
860     uint256 GetHash() const
861     {
862         return Hash(BEGIN(nVersion), END(nNonce));
863     }
864
865     int64 GetBlockTime() const
866     {
867         return (int64)nTime;
868     }
869
870     // ppcoin: get max transaction timestamp
871     int64 GetMaxTransactionTime() const
872     {
873         int64 maxTransactionTime = 0;
874         BOOST_FOREACH(const CTransaction& tx, vtx)
875             maxTransactionTime = std::max(maxTransactionTime, (int64)tx.nTime);
876         return maxTransactionTime;
877     }
878
879     int GetSigOpCount() const
880     {
881         int n = 0;
882         BOOST_FOREACH(const CTransaction& tx, vtx)
883             n += tx.GetSigOpCount();
884         return n;
885     }
886
887
888     uint256 BuildMerkleTree() const
889     {
890         vMerkleTree.clear();
891         BOOST_FOREACH(const CTransaction& tx, vtx)
892             vMerkleTree.push_back(tx.GetHash());
893         int j = 0;
894         for (int nSize = vtx.size(); nSize > 1; nSize = (nSize + 1) / 2)
895         {
896             for (int i = 0; i < nSize; i += 2)
897             {
898                 int i2 = std::min(i+1, nSize-1);
899                 vMerkleTree.push_back(Hash(BEGIN(vMerkleTree[j+i]),  END(vMerkleTree[j+i]),
900                                            BEGIN(vMerkleTree[j+i2]), END(vMerkleTree[j+i2])));
901             }
902             j += nSize;
903         }
904         return (vMerkleTree.empty() ? 0 : vMerkleTree.back());
905     }
906
907     std::vector<uint256> GetMerkleBranch(int nIndex) const
908     {
909         if (vMerkleTree.empty())
910             BuildMerkleTree();
911         std::vector<uint256> vMerkleBranch;
912         int j = 0;
913         for (int nSize = vtx.size(); nSize > 1; nSize = (nSize + 1) / 2)
914         {
915             int i = std::min(nIndex^1, nSize-1);
916             vMerkleBranch.push_back(vMerkleTree[j+i]);
917             nIndex >>= 1;
918             j += nSize;
919         }
920         return vMerkleBranch;
921     }
922
923     static uint256 CheckMerkleBranch(uint256 hash, const std::vector<uint256>& vMerkleBranch, int nIndex)
924     {
925         if (nIndex == -1)
926             return 0;
927         BOOST_FOREACH(const uint256& otherside, vMerkleBranch)
928         {
929             if (nIndex & 1)
930                 hash = Hash(BEGIN(otherside), END(otherside), BEGIN(hash), END(hash));
931             else
932                 hash = Hash(BEGIN(hash), END(hash), BEGIN(otherside), END(otherside));
933             nIndex >>= 1;
934         }
935         return hash;
936     }
937
938
939     bool WriteToDisk(unsigned int& nFileRet, unsigned int& nBlockPosRet)
940     {
941         // Open history file to append
942         CAutoFile fileout = AppendBlockFile(nFileRet);
943         if (!fileout)
944             return error("CBlock::WriteToDisk() : AppendBlockFile failed");
945
946         // Write index header
947         unsigned int nSize = fileout.GetSerializeSize(*this);
948         fileout << FLATDATA(pchMessageStart) << nSize;
949
950         // Write block
951         nBlockPosRet = ftell(fileout);
952         if (nBlockPosRet == -1)
953             return error("CBlock::WriteToDisk() : ftell failed");
954         fileout << *this;
955
956         // Flush stdio buffers and commit to disk before returning
957         fflush(fileout);
958         if (!IsInitialBlockDownload() || (nBestHeight+1) % 500 == 0)
959         {
960 #ifdef WIN32
961             _commit(_fileno(fileout));
962 #else
963             fsync(fileno(fileout));
964 #endif
965         }
966
967         return true;
968     }
969
970     bool ReadFromDisk(unsigned int nFile, unsigned int nBlockPos, bool fReadTransactions=true)
971     {
972         SetNull();
973
974         // Open history file to read
975         CAutoFile filein = OpenBlockFile(nFile, nBlockPos, "rb");
976         if (!filein)
977             return error("CBlock::ReadFromDisk() : OpenBlockFile failed");
978         if (!fReadTransactions)
979             filein.nType |= SER_BLOCKHEADERONLY;
980
981         // Read block
982         filein >> *this;
983
984         // Check the header
985         if (!CheckProofOfWork(GetHash(), nBits))
986             return error("CBlock::ReadFromDisk() : errors in block header");
987
988         return true;
989     }
990
991
992
993     void print() const
994     {
995         printf("CBlock(hash=%s, ver=%d, hashPrevBlock=%s, hashMerkleRoot=%s, nTime=%u, nBits=%08x, nNonce=%u, vtx=%d)\n",
996             GetHash().ToString().substr(0,20).c_str(),
997             nVersion,
998             hashPrevBlock.ToString().substr(0,20).c_str(),
999             hashMerkleRoot.ToString().substr(0,10).c_str(),
1000             nTime, nBits, nNonce,
1001             vtx.size());
1002         for (int i = 0; i < vtx.size(); i++)
1003         {
1004             printf("  ");
1005             vtx[i].print();
1006         }
1007         printf("  vMerkleTree: ");
1008         for (int i = 0; i < vMerkleTree.size(); i++)
1009             printf("%s ", vMerkleTree[i].ToString().substr(0,10).c_str());
1010         printf("\n");
1011     }
1012
1013
1014     bool DisconnectBlock(CTxDB& txdb, CBlockIndex* pindex);
1015     bool ConnectBlock(CTxDB& txdb, CBlockIndex* pindex);
1016     bool ReadFromDisk(const CBlockIndex* pindex, bool fReadTransactions=true);
1017     bool SetBestChain(CTxDB& txdb, CBlockIndex* pindexNew);
1018     bool AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos);
1019     bool CheckBlock() const;
1020     bool AcceptBlock();
1021     bool GetCoinAge(uint64& nCoinAge) const; // ppcoin: calculate total coin age spent in block
1022 };
1023
1024
1025
1026
1027
1028
1029 //
1030 // The block chain is a tree shaped structure starting with the
1031 // genesis block at the root, with each block potentially having multiple
1032 // candidates to be the next block.  pprev and pnext link a path through the
1033 // main/longest chain.  A blockindex may have multiple pprev pointing back
1034 // to it, but pnext will only point forward to the longest branch, or will
1035 // be null if the block is not part of the longest chain.
1036 //
1037 class CBlockIndex
1038 {
1039 public:
1040     const uint256* phashBlock;
1041     CBlockIndex* pprev;
1042     CBlockIndex* pnext;
1043     unsigned int nFile;
1044     unsigned int nBlockPos;
1045     uint64 nChainTrust;// ppcoin: trust score of chain, in the unit of coin-days
1046     int nHeight;
1047     int nCheckpoint;    // ppcoin: chain auto checkpoint height
1048
1049     // block header
1050     int nVersion;
1051     uint256 hashMerkleRoot;
1052     unsigned int nTime;
1053     unsigned int nBits;
1054     unsigned int nNonce;
1055
1056
1057     CBlockIndex()
1058     {
1059         phashBlock = NULL;
1060         pprev = NULL;
1061         pnext = NULL;
1062         nFile = 0;
1063         nBlockPos = 0;
1064         nHeight = 0;
1065         nChainTrust = 0;
1066         nCheckpoint = 0;
1067
1068         nVersion       = 0;
1069         hashMerkleRoot = 0;
1070         nTime          = 0;
1071         nBits          = 0;
1072         nNonce         = 0;
1073     }
1074
1075     CBlockIndex(unsigned int nFileIn, unsigned int nBlockPosIn, CBlock& block)
1076     {
1077         phashBlock = NULL;
1078         pprev = NULL;
1079         pnext = NULL;
1080         nFile = nFileIn;
1081         nBlockPos = nBlockPosIn;
1082         nHeight = 0;
1083         nChainTrust = 0;
1084         nCheckpoint = 0;
1085
1086         nVersion       = block.nVersion;
1087         hashMerkleRoot = block.hashMerkleRoot;
1088         nTime          = block.nTime;
1089         nBits          = block.nBits;
1090         nNonce         = block.nNonce;
1091     }
1092
1093     CBlock GetBlockHeader() const
1094     {
1095         CBlock block;
1096         block.nVersion       = nVersion;
1097         if (pprev)
1098             block.hashPrevBlock = pprev->GetBlockHash();
1099         block.hashMerkleRoot = hashMerkleRoot;
1100         block.nTime          = nTime;
1101         block.nBits          = nBits;
1102         block.nNonce         = nNonce;
1103         return block;
1104     }
1105
1106     uint256 GetBlockHash() const
1107     {
1108         return *phashBlock;
1109     }
1110
1111     int64 GetBlockTime() const
1112     {
1113         return (int64)nTime;
1114     }
1115
1116     int64 GetBlockTrust() const
1117     {
1118         return (nChainTrust - (pprev? pprev->nChainTrust : 0));
1119     }
1120
1121     bool IsInMainChain() const
1122     {
1123         return (pnext || this == pindexBest);
1124     }
1125
1126     bool CheckIndex() const
1127     {
1128         return CheckProofOfWork(GetBlockHash(), nBits);
1129     }
1130
1131     bool EraseBlockFromDisk()
1132     {
1133         // Open history file
1134         CAutoFile fileout = OpenBlockFile(nFile, nBlockPos, "rb+");
1135         if (!fileout)
1136             return false;
1137
1138         // Overwrite with empty null block
1139         CBlock block;
1140         block.SetNull();
1141         fileout << block;
1142
1143         return true;
1144     }
1145
1146     enum { nMedianTimeSpan=11 };
1147
1148     int64 GetMedianTimePast() const
1149     {
1150         int64 pmedian[nMedianTimeSpan];
1151         int64* pbegin = &pmedian[nMedianTimeSpan];
1152         int64* pend = &pmedian[nMedianTimeSpan];
1153
1154         const CBlockIndex* pindex = this;
1155         for (int i = 0; i < nMedianTimeSpan && pindex; i++, pindex = pindex->pprev)
1156             *(--pbegin) = pindex->GetBlockTime();
1157
1158         std::sort(pbegin, pend);
1159         return pbegin[(pend - pbegin)/2];
1160     }
1161
1162     int64 GetMedianTime() const
1163     {
1164         const CBlockIndex* pindex = this;
1165         for (int i = 0; i < nMedianTimeSpan/2; i++)
1166         {
1167             if (!pindex->pnext)
1168                 return GetBlockTime();
1169             pindex = pindex->pnext;
1170         }
1171         return pindex->GetMedianTimePast();
1172     }
1173
1174
1175
1176     std::string ToString() const
1177     {
1178         return strprintf("CBlockIndex(nprev=%08x, pnext=%08x, nFile=%d, nBlockPos=%-6d nChainTrust=%"PRI64d" nHeight=%d, nCheckpoint=%d, merkle=%s, hashBlock=%s)",
1179             pprev, pnext, nFile, nBlockPos, nChainTrust, nHeight, nCheckpoint,
1180             hashMerkleRoot.ToString().substr(0,10).c_str(),
1181             GetBlockHash().ToString().substr(0,20).c_str());
1182     }
1183
1184     void print() const
1185     {
1186         printf("%s\n", ToString().c_str());
1187     }
1188 };
1189
1190
1191
1192 //
1193 // Used to marshal pointers into hashes for db storage.
1194 //
1195 class CDiskBlockIndex : public CBlockIndex
1196 {
1197 public:
1198     uint256 hashPrev;
1199     uint256 hashNext;
1200
1201     CDiskBlockIndex()
1202     {
1203         hashPrev = 0;
1204         hashNext = 0;
1205     }
1206
1207     explicit CDiskBlockIndex(CBlockIndex* pindex) : CBlockIndex(*pindex)
1208     {
1209         hashPrev = (pprev ? pprev->GetBlockHash() : 0);
1210         hashNext = (pnext ? pnext->GetBlockHash() : 0);
1211     }
1212
1213     IMPLEMENT_SERIALIZE
1214     (
1215         if (!(nType & SER_GETHASH))
1216             READWRITE(nVersion);
1217
1218         READWRITE(hashNext);
1219         READWRITE(nFile);
1220         READWRITE(nBlockPos);
1221         READWRITE(nChainTrust);
1222         READWRITE(nHeight);
1223         READWRITE(nCheckpoint);
1224
1225         // block header
1226         READWRITE(this->nVersion);
1227         READWRITE(hashPrev);
1228         READWRITE(hashMerkleRoot);
1229         READWRITE(nTime);
1230         READWRITE(nBits);
1231         READWRITE(nNonce);
1232     )
1233
1234     uint256 GetBlockHash() const
1235     {
1236         CBlock block;
1237         block.nVersion        = nVersion;
1238         block.hashPrevBlock   = hashPrev;
1239         block.hashMerkleRoot  = hashMerkleRoot;
1240         block.nTime           = nTime;
1241         block.nBits           = nBits;
1242         block.nNonce          = nNonce;
1243         return block.GetHash();
1244     }
1245
1246
1247     std::string ToString() const
1248     {
1249         std::string str = "CDiskBlockIndex(";
1250         str += CBlockIndex::ToString();
1251         str += strprintf("\n                hashBlock=%s, hashPrev=%s, hashNext=%s)",
1252             GetBlockHash().ToString().c_str(),
1253             hashPrev.ToString().substr(0,20).c_str(),
1254             hashNext.ToString().substr(0,20).c_str());
1255         return str;
1256     }
1257
1258     void print() const
1259     {
1260         printf("%s\n", ToString().c_str());
1261     }
1262 };
1263
1264
1265
1266
1267
1268
1269
1270
1271 //
1272 // Describes a place in the block chain to another node such that if the
1273 // other node doesn't have the same branch, it can find a recent common trunk.
1274 // The further back it is, the further before the fork it may be.
1275 //
1276 class CBlockLocator
1277 {
1278 protected:
1279     std::vector<uint256> vHave;
1280 public:
1281
1282     CBlockLocator()
1283     {
1284     }
1285
1286     explicit CBlockLocator(const CBlockIndex* pindex)
1287     {
1288         Set(pindex);
1289     }
1290
1291     explicit CBlockLocator(uint256 hashBlock)
1292     {
1293         std::map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock);
1294         if (mi != mapBlockIndex.end())
1295             Set((*mi).second);
1296     }
1297
1298     IMPLEMENT_SERIALIZE
1299     (
1300         if (!(nType & SER_GETHASH))
1301             READWRITE(nVersion);
1302         READWRITE(vHave);
1303     )
1304
1305     void SetNull()
1306     {
1307         vHave.clear();
1308     }
1309
1310     bool IsNull()
1311     {
1312         return vHave.empty();
1313     }
1314
1315     void Set(const CBlockIndex* pindex)
1316     {
1317         vHave.clear();
1318         int nStep = 1;
1319         while (pindex)
1320         {
1321             vHave.push_back(pindex->GetBlockHash());
1322
1323             // Exponentially larger steps back
1324             for (int i = 0; pindex && i < nStep; i++)
1325                 pindex = pindex->pprev;
1326             if (vHave.size() > 10)
1327                 nStep *= 2;
1328         }
1329         vHave.push_back(hashGenesisBlock);
1330     }
1331
1332     int GetDistanceBack()
1333     {
1334         // Retrace how far back it was in the sender's branch
1335         int nDistance = 0;
1336         int nStep = 1;
1337         BOOST_FOREACH(const uint256& hash, vHave)
1338         {
1339             std::map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hash);
1340             if (mi != mapBlockIndex.end())
1341             {
1342                 CBlockIndex* pindex = (*mi).second;
1343                 if (pindex->IsInMainChain())
1344                     return nDistance;
1345             }
1346             nDistance += nStep;
1347             if (nDistance > 10)
1348                 nStep *= 2;
1349         }
1350         return nDistance;
1351     }
1352
1353     CBlockIndex* GetBlockIndex()
1354     {
1355         // Find the first block the caller has in the main chain
1356         BOOST_FOREACH(const uint256& hash, vHave)
1357         {
1358             std::map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hash);
1359             if (mi != mapBlockIndex.end())
1360             {
1361                 CBlockIndex* pindex = (*mi).second;
1362                 if (pindex->IsInMainChain())
1363                     return pindex;
1364             }
1365         }
1366         return pindexGenesisBlock;
1367     }
1368
1369     uint256 GetBlockHash()
1370     {
1371         // Find the first block the caller has in the main chain
1372         BOOST_FOREACH(const uint256& hash, vHave)
1373         {
1374             std::map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hash);
1375             if (mi != mapBlockIndex.end())
1376             {
1377                 CBlockIndex* pindex = (*mi).second;
1378                 if (pindex->IsInMainChain())
1379                     return hash;
1380             }
1381         }
1382         return hashGenesisBlock;
1383     }
1384
1385     int GetHeight()
1386     {
1387         CBlockIndex* pindex = GetBlockIndex();
1388         if (!pindex)
1389             return 0;
1390         return pindex->nHeight;
1391     }
1392 };
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402 //
1403 // Alerts are for notifying old versions if they become too obsolete and
1404 // need to upgrade.  The message is displayed in the status bar.
1405 // Alert messages are broadcast as a vector of signed data.  Unserializing may
1406 // not read the entire buffer if the alert is for a newer version, but older
1407 // versions can still relay the original data.
1408 //
1409 class CUnsignedAlert
1410 {
1411 public:
1412     int nVersion;
1413     int64 nRelayUntil;      // when newer nodes stop relaying to newer nodes
1414     int64 nExpiration;
1415     int nID;
1416     int nCancel;
1417     std::set<int> setCancel;
1418     int nMinVer;            // lowest version inclusive
1419     int nMaxVer;            // highest version inclusive
1420     std::set<std::string> setSubVer;  // empty matches all
1421     int nPriority;
1422
1423     // Actions
1424     std::string strComment;
1425     std::string strStatusBar;
1426     std::string strReserved;
1427
1428     IMPLEMENT_SERIALIZE
1429     (
1430         READWRITE(this->nVersion);
1431         nVersion = this->nVersion;
1432         READWRITE(nRelayUntil);
1433         READWRITE(nExpiration);
1434         READWRITE(nID);
1435         READWRITE(nCancel);
1436         READWRITE(setCancel);
1437         READWRITE(nMinVer);
1438         READWRITE(nMaxVer);
1439         READWRITE(setSubVer);
1440         READWRITE(nPriority);
1441
1442         READWRITE(strComment);
1443         READWRITE(strStatusBar);
1444         READWRITE(strReserved);
1445     )
1446
1447     void SetNull()
1448     {
1449         nVersion = 1;
1450         nRelayUntil = 0;
1451         nExpiration = 0;
1452         nID = 0;
1453         nCancel = 0;
1454         setCancel.clear();
1455         nMinVer = 0;
1456         nMaxVer = 0;
1457         setSubVer.clear();
1458         nPriority = 0;
1459
1460         strComment.clear();
1461         strStatusBar.clear();
1462         strReserved.clear();
1463     }
1464
1465     std::string ToString() const
1466     {
1467         std::string strSetCancel;
1468         BOOST_FOREACH(int n, setCancel)
1469             strSetCancel += strprintf("%d ", n);
1470         std::string strSetSubVer;
1471         BOOST_FOREACH(std::string str, setSubVer)
1472             strSetSubVer += "\"" + str + "\" ";
1473         return strprintf(
1474                 "CAlert(\n"
1475                 "    nVersion     = %d\n"
1476                 "    nRelayUntil  = %"PRI64d"\n"
1477                 "    nExpiration  = %"PRI64d"\n"
1478                 "    nID          = %d\n"
1479                 "    nCancel      = %d\n"
1480                 "    setCancel    = %s\n"
1481                 "    nMinVer      = %d\n"
1482                 "    nMaxVer      = %d\n"
1483                 "    setSubVer    = %s\n"
1484                 "    nPriority    = %d\n"
1485                 "    strComment   = \"%s\"\n"
1486                 "    strStatusBar = \"%s\"\n"
1487                 ")\n",
1488             nVersion,
1489             nRelayUntil,
1490             nExpiration,
1491             nID,
1492             nCancel,
1493             strSetCancel.c_str(),
1494             nMinVer,
1495             nMaxVer,
1496             strSetSubVer.c_str(),
1497             nPriority,
1498             strComment.c_str(),
1499             strStatusBar.c_str());
1500     }
1501
1502     void print() const
1503     {
1504         printf("%s", ToString().c_str());
1505     }
1506 };
1507
1508 class CAlert : public CUnsignedAlert
1509 {
1510 public:
1511     std::vector<unsigned char> vchMsg;
1512     std::vector<unsigned char> vchSig;
1513
1514     CAlert()
1515     {
1516         SetNull();
1517     }
1518
1519     IMPLEMENT_SERIALIZE
1520     (
1521         READWRITE(vchMsg);
1522         READWRITE(vchSig);
1523     )
1524
1525     void SetNull()
1526     {
1527         CUnsignedAlert::SetNull();
1528         vchMsg.clear();
1529         vchSig.clear();
1530     }
1531
1532     bool IsNull() const
1533     {
1534         return (nExpiration == 0);
1535     }
1536
1537     uint256 GetHash() const
1538     {
1539         return SerializeHash(*this);
1540     }
1541
1542     bool IsInEffect() const
1543     {
1544         return (GetAdjustedTime() < nExpiration);
1545     }
1546
1547     bool Cancels(const CAlert& alert) const
1548     {
1549         if (!IsInEffect())
1550             return false; // this was a no-op before 31403
1551         return (alert.nID <= nCancel || setCancel.count(alert.nID));
1552     }
1553
1554     bool AppliesTo(int nVersion, std::string strSubVerIn) const
1555     {
1556         return (IsInEffect() &&
1557                 nMinVer <= nVersion && nVersion <= nMaxVer &&
1558                 (setSubVer.empty() || setSubVer.count(strSubVerIn)));
1559     }
1560
1561     bool AppliesToMe() const
1562     {
1563         return AppliesTo(VERSION, ::pszSubVer);
1564     }
1565
1566     bool RelayTo(CNode* pnode) const
1567     {
1568         if (!IsInEffect())
1569             return false;
1570         // returns true if wasn't already contained in the set
1571         if (pnode->setKnown.insert(GetHash()).second)
1572         {
1573             if (AppliesTo(pnode->nVersion, pnode->strSubVer) ||
1574                 AppliesToMe() ||
1575                 GetAdjustedTime() < nRelayUntil)
1576             {
1577                 pnode->PushMessage("alert", *this);
1578                 return true;
1579             }
1580         }
1581         return false;
1582     }
1583
1584     bool CheckSignature()
1585     {
1586         CKey key;
1587         if (!key.SetPubKey(ParseHex("04fc9702847840aaf195de8442ebecedf5b095cdbb9bc716bda9110971b28a49e0ead8564ff0db22209e0374782c093bb899692d524e9d6a6956e7c5ecbcd68284")))
1588             return error("CAlert::CheckSignature() : SetPubKey failed");
1589         if (!key.Verify(Hash(vchMsg.begin(), vchMsg.end()), vchSig))
1590             return error("CAlert::CheckSignature() : verify signature failed");
1591
1592         // Now unserialize the data
1593         CDataStream sMsg(vchMsg);
1594         sMsg >> *(CUnsignedAlert*)this;
1595         return true;
1596     }
1597
1598     bool ProcessAlert();
1599 };
1600
1601 #endif