You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
169 lines
4.1 KiB
169 lines
4.1 KiB
12 years ago
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
||
|
// Copyright (c) 2009-2013 The Bitcoin developers
|
||
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||
12 years ago
|
|
||
10 years ago
|
#ifndef BITCOIN_PRIMITIVES_BLOCK_H
|
||
|
#define BITCOIN_PRIMITIVES_BLOCK_H
|
||
12 years ago
|
|
||
10 years ago
|
#include "primitives/transaction.h"
|
||
12 years ago
|
#include "serialize.h"
|
||
|
#include "uint256.h"
|
||
|
|
||
12 years ago
|
/** Nodes collect new transactions into a block, hash them into a hash tree,
|
||
|
* and scan through nonce values to make the block's hash satisfy proof-of-work
|
||
|
* requirements. When they solve the proof-of-work, they broadcast the block
|
||
|
* to everyone and the block is added to the block chain. The first transaction
|
||
|
* in the block is a special one that creates a new coin owned by the creator
|
||
|
* of the block.
|
||
|
*/
|
||
|
class CBlockHeader
|
||
|
{
|
||
|
public:
|
||
|
// header
|
||
10 years ago
|
static const int32_t CURRENT_VERSION=2;
|
||
|
int32_t nVersion;
|
||
12 years ago
|
uint256 hashPrevBlock;
|
||
|
uint256 hashMerkleRoot;
|
||
10 years ago
|
uint32_t nTime;
|
||
|
uint32_t nBits;
|
||
|
uint32_t nNonce;
|
||
12 years ago
|
|
||
|
CBlockHeader()
|
||
|
{
|
||
|
SetNull();
|
||
|
}
|
||
|
|
||
10 years ago
|
ADD_SERIALIZE_METHODS;
|
||
10 years ago
|
|
||
10 years ago
|
template <typename Stream, typename Operation>
|
||
10 years ago
|
inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) {
|
||
12 years ago
|
READWRITE(this->nVersion);
|
||
|
nVersion = this->nVersion;
|
||
|
READWRITE(hashPrevBlock);
|
||
|
READWRITE(hashMerkleRoot);
|
||
|
READWRITE(nTime);
|
||
|
READWRITE(nBits);
|
||
|
READWRITE(nNonce);
|
||
10 years ago
|
}
|
||
12 years ago
|
|
||
|
void SetNull()
|
||
|
{
|
||
|
nVersion = CBlockHeader::CURRENT_VERSION;
|
||
|
hashPrevBlock = 0;
|
||
|
hashMerkleRoot = 0;
|
||
|
nTime = 0;
|
||
|
nBits = 0;
|
||
|
nNonce = 0;
|
||
|
}
|
||
|
|
||
|
bool IsNull() const
|
||
|
{
|
||
|
return (nBits == 0);
|
||
|
}
|
||
|
|
||
12 years ago
|
uint256 GetHash() const;
|
||
12 years ago
|
|
||
12 years ago
|
int64_t GetBlockTime() const
|
||
12 years ago
|
{
|
||
12 years ago
|
return (int64_t)nTime;
|
||
12 years ago
|
}
|
||
|
};
|
||
|
|
||
12 years ago
|
|
||
|
class CBlock : public CBlockHeader
|
||
|
{
|
||
|
public:
|
||
|
// network and disk
|
||
|
std::vector<CTransaction> vtx;
|
||
|
|
||
|
// memory only
|
||
|
mutable std::vector<uint256> vMerkleTree;
|
||
|
|
||
|
CBlock()
|
||
|
{
|
||
|
SetNull();
|
||
|
}
|
||
|
|
||
|
CBlock(const CBlockHeader &header)
|
||
|
{
|
||
|
SetNull();
|
||
|
*((CBlockHeader*)this) = header;
|
||
|
}
|
||
|
|
||
10 years ago
|
ADD_SERIALIZE_METHODS;
|
||
10 years ago
|
|
||
10 years ago
|
template <typename Stream, typename Operation>
|
||
10 years ago
|
inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) {
|
||
12 years ago
|
READWRITE(*(CBlockHeader*)this);
|
||
|
READWRITE(vtx);
|
||
10 years ago
|
}
|
||
12 years ago
|
|
||
|
void SetNull()
|
||
|
{
|
||
|
CBlockHeader::SetNull();
|
||
|
vtx.clear();
|
||
|
vMerkleTree.clear();
|
||
|
}
|
||
|
|
||
|
CBlockHeader GetBlockHeader() const
|
||
|
{
|
||
|
CBlockHeader block;
|
||
|
block.nVersion = nVersion;
|
||
|
block.hashPrevBlock = hashPrevBlock;
|
||
|
block.hashMerkleRoot = hashMerkleRoot;
|
||
|
block.nTime = nTime;
|
||
|
block.nBits = nBits;
|
||
|
block.nNonce = nNonce;
|
||
|
return block;
|
||
|
}
|
||
|
|
||
10 years ago
|
// Build the in-memory merkle tree for this block and return the merkle root.
|
||
|
// If non-NULL, *mutated is set to whether mutation was detected in the merkle
|
||
|
// tree (a duplication of transactions in the block leading to an identical
|
||
|
// merkle root).
|
||
|
uint256 BuildMerkleTree(bool* mutated = NULL) const;
|
||
12 years ago
|
|
||
12 years ago
|
std::vector<uint256> GetMerkleBranch(int nIndex) const;
|
||
|
static uint256 CheckMerkleBranch(uint256 hash, const std::vector<uint256>& vMerkleBranch, int nIndex);
|
||
10 years ago
|
std::string ToString() const;
|
||
12 years ago
|
};
|
||
|
|
||
11 years ago
|
|
||
|
/** Describes a place in the block chain to another node such that if the
|
||
|
* other node doesn't have the same branch, it can find a recent common trunk.
|
||
|
* The further back it is, the further before the fork it may be.
|
||
|
*/
|
||
|
struct CBlockLocator
|
||
|
{
|
||
|
std::vector<uint256> vHave;
|
||
|
|
||
|
CBlockLocator() {}
|
||
|
|
||
|
CBlockLocator(const std::vector<uint256>& vHaveIn)
|
||
|
{
|
||
|
vHave = vHaveIn;
|
||
|
}
|
||
|
|
||
10 years ago
|
ADD_SERIALIZE_METHODS;
|
||
10 years ago
|
|
||
10 years ago
|
template <typename Stream, typename Operation>
|
||
10 years ago
|
inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) {
|
||
11 years ago
|
if (!(nType & SER_GETHASH))
|
||
|
READWRITE(nVersion);
|
||
|
READWRITE(vHave);
|
||
10 years ago
|
}
|
||
11 years ago
|
|
||
|
void SetNull()
|
||
|
{
|
||
|
vHave.clear();
|
||
|
}
|
||
|
|
||
|
bool IsNull()
|
||
|
{
|
||
|
return vHave.empty();
|
||
|
}
|
||
|
};
|
||
|
|
||
10 years ago
|
#endif // BITCOIN_PRIMITIVES_BLOCK_H
|