|
|
|
@ -1071,7 +1071,7 @@ public:
@@ -1071,7 +1071,7 @@ public:
|
|
|
|
|
* in the block is a special one that creates a new coin owned by the creator |
|
|
|
|
* of the block. |
|
|
|
|
*/ |
|
|
|
|
class CBlock |
|
|
|
|
class CBlockHeader |
|
|
|
|
{ |
|
|
|
|
public: |
|
|
|
|
// header
|
|
|
|
@ -1083,17 +1083,7 @@ public:
@@ -1083,17 +1083,7 @@ public:
|
|
|
|
|
unsigned int nBits; |
|
|
|
|
unsigned int nNonce; |
|
|
|
|
|
|
|
|
|
// network and disk
|
|
|
|
|
std::vector<CTransaction> vtx; |
|
|
|
|
|
|
|
|
|
// memory only
|
|
|
|
|
mutable std::vector<uint256> vMerkleTree; |
|
|
|
|
|
|
|
|
|
// Denial-of-service detection:
|
|
|
|
|
mutable int nDoS; |
|
|
|
|
bool DoS(int nDoSIn, bool fIn) const { nDoS += nDoSIn; return fIn; } |
|
|
|
|
|
|
|
|
|
CBlock() |
|
|
|
|
CBlockHeader() |
|
|
|
|
{ |
|
|
|
|
SetNull(); |
|
|
|
|
} |
|
|
|
@ -1107,25 +1097,16 @@ public:
@@ -1107,25 +1097,16 @@ public:
|
|
|
|
|
READWRITE(nTime); |
|
|
|
|
READWRITE(nBits); |
|
|
|
|
READWRITE(nNonce); |
|
|
|
|
|
|
|
|
|
// ConnectBlock depends on vtx being last so it can calculate offset
|
|
|
|
|
if (!(nType & (SER_GETHASH|SER_BLOCKHEADERONLY))) |
|
|
|
|
READWRITE(vtx); |
|
|
|
|
else if (fRead) |
|
|
|
|
const_cast<CBlock*>(this)->vtx.clear(); |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
void SetNull() |
|
|
|
|
{ |
|
|
|
|
nVersion = CBlock::CURRENT_VERSION; |
|
|
|
|
nVersion = CBlockHeader::CURRENT_VERSION; |
|
|
|
|
hashPrevBlock = 0; |
|
|
|
|
hashMerkleRoot = 0; |
|
|
|
|
nTime = 0; |
|
|
|
|
nBits = 0; |
|
|
|
|
nNonce = 0; |
|
|
|
|
vtx.clear(); |
|
|
|
|
vMerkleTree.clear(); |
|
|
|
|
nDoS = 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool IsNull() const |
|
|
|
@ -1144,7 +1125,45 @@ public:
@@ -1144,7 +1125,45 @@ public:
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void UpdateTime(const CBlockIndex* pindexPrev); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
class CBlock : public CBlockHeader |
|
|
|
|
{ |
|
|
|
|
public: |
|
|
|
|
// network and disk
|
|
|
|
|
std::vector<CTransaction> vtx; |
|
|
|
|
|
|
|
|
|
// memory only
|
|
|
|
|
mutable std::vector<uint256> vMerkleTree; |
|
|
|
|
|
|
|
|
|
// Denial-of-service detection:
|
|
|
|
|
mutable int nDoS; |
|
|
|
|
bool DoS(int nDoSIn, bool fIn) const { nDoS += nDoSIn; return fIn; } |
|
|
|
|
|
|
|
|
|
CBlock() |
|
|
|
|
{ |
|
|
|
|
SetNull(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
CBlock(const CBlockHeader &header) |
|
|
|
|
{ |
|
|
|
|
SetNull(); |
|
|
|
|
*((CBlockHeader*)this) = header; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
IMPLEMENT_SERIALIZE |
|
|
|
|
( |
|
|
|
|
READWRITE(*(CBlockHeader*)this); |
|
|
|
|
READWRITE(vtx); |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
void SetNull() |
|
|
|
|
{ |
|
|
|
|
CBlockHeader::SetNull(); |
|
|
|
|
vtx.clear(); |
|
|
|
|
vMerkleTree.clear(); |
|
|
|
|
nDoS = 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
uint256 BuildMerkleTree() const |
|
|
|
|
{ |
|
|
|
@ -1229,7 +1248,7 @@ public:
@@ -1229,7 +1248,7 @@ public:
|
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool ReadFromDisk(const CDiskBlockPos &pos, bool fReadTransactions = true) |
|
|
|
|
bool ReadFromDisk(const CDiskBlockPos &pos) |
|
|
|
|
{ |
|
|
|
|
SetNull(); |
|
|
|
|
|
|
|
|
@ -1237,8 +1256,6 @@ public:
@@ -1237,8 +1256,6 @@ public:
|
|
|
|
|
CAutoFile filein = CAutoFile(OpenBlockFile(pos, true), SER_DISK, CLIENT_VERSION); |
|
|
|
|
if (!filein) |
|
|
|
|
return error("CBlock::ReadFromDisk() : OpenBlockFile failed"); |
|
|
|
|
if (!fReadTransactions) |
|
|
|
|
filein.nType |= SER_BLOCKHEADERONLY; |
|
|
|
|
|
|
|
|
|
// Read block
|
|
|
|
|
try { |
|
|
|
@ -1285,7 +1302,7 @@ public:
@@ -1285,7 +1302,7 @@ public:
|
|
|
|
|
bool ConnectBlock(CBlockIndex *pindex, CCoinsViewCache &coins, bool fJustCheck=false); |
|
|
|
|
|
|
|
|
|
// Read a block from disk
|
|
|
|
|
bool ReadFromDisk(const CBlockIndex* pindex, bool fReadTransactions=true); |
|
|
|
|
bool ReadFromDisk(const CBlockIndex* pindex); |
|
|
|
|
|
|
|
|
|
// Add this block to the block index, and if necessary, switch the active block chain to this
|
|
|
|
|
bool AddToBlockIndex(const CDiskBlockPos &pos); |
|
|
|
@ -1450,7 +1467,7 @@ public:
@@ -1450,7 +1467,7 @@ public:
|
|
|
|
|
nNonce = 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
CBlockIndex(CBlock& block) |
|
|
|
|
CBlockIndex(CBlockHeader& block) |
|
|
|
|
{ |
|
|
|
|
phashBlock = NULL; |
|
|
|
|
pprev = NULL; |
|
|
|
@ -1491,9 +1508,9 @@ public:
@@ -1491,9 +1508,9 @@ public:
|
|
|
|
|
return ret; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
CBlock GetBlockHeader() const |
|
|
|
|
CBlockHeader GetBlockHeader() const |
|
|
|
|
{ |
|
|
|
|
CBlock block; |
|
|
|
|
CBlockHeader block; |
|
|
|
|
block.nVersion = nVersion; |
|
|
|
|
if (pprev) |
|
|
|
|
block.hashPrevBlock = pprev->GetBlockHash(); |
|
|
|
@ -1637,7 +1654,7 @@ public:
@@ -1637,7 +1654,7 @@ public:
|
|
|
|
|
|
|
|
|
|
uint256 GetBlockHash() const |
|
|
|
|
{ |
|
|
|
|
CBlock block; |
|
|
|
|
CBlockHeader block; |
|
|
|
|
block.nVersion = nVersion; |
|
|
|
|
block.hashPrevBlock = hashPrev; |
|
|
|
|
block.hashMerkleRoot = hashMerkleRoot; |
|
|
|
|