Bitcoin
Public Member Functions | Public Attributes | List of all members
CBlockHeader Class Reference

#include <block.h>

Inheritance diagram for CBlockHeader:
CBlock

Public Member Functions

 CBlockHeader ()
 
template<typename Stream , typename Operation >
void SerializationOp (Stream &s, Operation ser_action)
 
void SetNull ()
 
bool IsNull () const
 
uint256 GetHash () const
 
int64_t GetBlockTime () const
 

Public Attributes

int32_t nVersion
 
uint256 hashPrevBlock
 
uint256 hashMerkleRoot
 
uint32_t nTime
 
uint32_t nBits
 
uint32_t nNonce
 
 ADD_SERIALIZE_METHODS
 

Detailed Description

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.

Constructor & Destructor Documentation

◆ CBlockHeader()

CBlockHeader::CBlockHeader ( )
inline

Member Function Documentation

◆ GetBlockTime()

int64_t CBlockHeader::GetBlockTime ( ) const
inline

◆ GetHash()

uint256 CBlockHeader::GetHash ( ) const

◆ IsNull()

bool CBlockHeader::IsNull ( ) const
inline

◆ SerializationOp()

template<typename Stream , typename Operation >
void CBlockHeader::SerializationOp ( Stream &  s,
Operation  ser_action 
)
inline

◆ SetNull()

void CBlockHeader::SetNull ( )
inline

Member Data Documentation

◆ ADD_SERIALIZE_METHODS

CBlockHeader::ADD_SERIALIZE_METHODS

◆ hashMerkleRoot

uint256 CBlockHeader::hashMerkleRoot

◆ hashPrevBlock

uint256 CBlockHeader::hashPrevBlock

◆ nBits

uint32_t CBlockHeader::nBits

◆ nNonce

uint32_t CBlockHeader::nNonce

◆ nTime

uint32_t CBlockHeader::nTime

◆ nVersion

int32_t CBlockHeader::nVersion

The documentation for this class was generated from the following files: