X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fmain.h;h=2748269343817b6825c78f326e937f9865be0ff2;hb=9795536e660254a25984d0fc81a548eaf0e91c92;hp=1d8dc96e55588114ae4e7dea69df3df7c7ddfd8d;hpb=dd8de4b0cb2c62ab57356652af72f1638570763a;p=novacoin.git diff --git a/src/main.h b/src/main.h index 1d8dc96..2748269 100644 --- a/src/main.h +++ b/src/main.h @@ -53,6 +53,7 @@ static const int fHaveUPnP = false; extern CCriticalSection cs_main; extern std::map mapBlockIndex; +extern std::set > setStakeSeen; extern uint256 hashGenesisBlock; extern CBlockIndex* pindexGenesisBlock; extern int nBestHeight; @@ -66,6 +67,7 @@ extern int64 nHPSTimerStart; extern int64 nTimeBestReceived; extern CCriticalSection cs_setpwalletRegistered; extern std::set setpwalletRegistered; +extern std::map mapOrphanBlocks; // Settings extern int fGenerateBitcoins; @@ -106,7 +108,8 @@ unsigned int ComputeMinWork(unsigned int nBase, int64 nTime); int GetNumBlocksOfPeers(); bool IsInitialBlockDownload(); std::string GetWarnings(std::string strFor); - +bool Reorganize(CTxDB& txdb, CBlockIndex* pindexNew); +uint256 WantedByOrphan(const CBlock* pblockOrphan); @@ -510,7 +513,7 @@ public: bool IsCoinStake() const { // ppcoin: the coin stake transaction is marked with the first output empty - return (vout.size() == 2 && vout[0].IsEmpty()); + return (vin.size() > 0 && vout.size() == 2 && vout[0].IsEmpty()); } int GetSigOpCount() const @@ -674,7 +677,7 @@ protected: public: bool RemoveFromMemoryPool(); bool GetCoinAge(CTxDB& txdb, uint64& nCoinAge) const; // ppcoin: get transaction coin age - bool CheckProofOfStake(CTxDB& txdb, unsigned int nBits) const; + bool CheckProofOfStake(unsigned int nBits) const; }; @@ -896,6 +899,11 @@ public: return !IsProofOfStake(); } + std::pair GetProofOfStake() const + { + return IsProofOfStake()? std::make_pair(vtx[1].vin[0].prevout, vtx[1].nTime) : std::make_pair(COutPoint(), (unsigned int)0); + } + // ppcoin: get max transaction timestamp int64 GetMaxTransactionTime() const { @@ -1124,8 +1132,9 @@ public: unsigned int nBlockPos; uint64 nChainTrust;// ppcoin: trust score of chain, in the unit of coin-days int nHeight; - int nCheckpoint; // ppcoin: chain auto checkpoint height bool fProofOfStake; // ppcoin: is the block of proof-of-stake type + COutPoint prevoutStake; + unsigned int nStakeTime; // block header int nVersion; @@ -1144,8 +1153,9 @@ public: nBlockPos = 0; nHeight = 0; nChainTrust = 0; - nCheckpoint = 0; fProofOfStake = true; + prevoutStake.SetNull(); + nStakeTime = 0; nVersion = 0; hashMerkleRoot = 0; @@ -1163,8 +1173,17 @@ public: nBlockPos = nBlockPosIn; nHeight = 0; nChainTrust = 0; - nCheckpoint = 0; fProofOfStake = block.IsProofOfStake(); + if (fProofOfStake) + { + prevoutStake = block.vtx[1].vin[0].prevout; + nStakeTime = block.vtx[1].nTime; + } + else + { + prevoutStake.SetNull(); + nStakeTime = 0; + } nVersion = block.nVersion; hashMerkleRoot = block.hashMerkleRoot; @@ -1266,8 +1285,9 @@ public: std::string ToString() const { - return strprintf("CBlockIndex(nprev=%08x, pnext=%08x, nFile=%d, nBlockPos=%-6d nChainTrust=%"PRI64d" nHeight=%d, nCheckpoint=%d, fProofOfStake=%d merkle=%s, hashBlock=%s)", - pprev, pnext, nFile, nBlockPos, nChainTrust, nHeight, nCheckpoint, fProofOfStake, + return strprintf("CBlockIndex(nprev=%08x, pnext=%08x, nFile=%d, nBlockPos=%-6d nChainTrust=%"PRI64d" nHeight=%d, fProofOfStake=%d prevoutStake=(%s), nStakeTime=%d merkle=%s, hashBlock=%s)", + pprev, pnext, nFile, nBlockPos, nChainTrust, nHeight, + fProofOfStake, prevoutStake.ToString().c_str(), nStakeTime, hashMerkleRoot.ToString().substr(0,10).c_str(), GetBlockHash().ToString().substr(0,20).c_str()); } @@ -1311,8 +1331,17 @@ public: READWRITE(nBlockPos); READWRITE(nChainTrust); READWRITE(nHeight); - READWRITE(nCheckpoint); READWRITE(fProofOfStake); + if (fProofOfStake) + { + READWRITE(prevoutStake); + READWRITE(nStakeTime); + } + else if (fRead) + { + const_cast(this)->prevoutStake.SetNull(); + const_cast(this)->nStakeTime = 0; + } // block header READWRITE(this->nVersion);