Feathercoin  0.5.0
P2P Digital Currency
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
Public Member Functions | Public Attributes | Static Public Attributes | List of all members
CBlockHeader Class Reference

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. More...

#include <main.h>

Inheritance diagram for CBlockHeader:
Inheritance graph
[legend]
Collaboration diagram for CBlockHeader:
Collaboration graph
[legend]

Public Member Functions

 CBlockHeader ()
 
 IMPLEMENT_SERIALIZE (READWRITE(this->nVersion);nVersion=this->nVersion;READWRITE(hashPrevBlock);READWRITE(hashMerkleRoot);READWRITE(nTime);READWRITE(nBits);READWRITE(nNonce);) void SetNull()
 
bool IsNull () const
 
uint256 GetHash () const
 
int64 GetBlockTime () const
 
void UpdateTime (const CBlockIndex *pindexPrev)
 

Public Attributes

int nVersion
 
uint256 hashPrevBlock
 
uint256 hashMerkleRoot
 
unsigned int nTime
 
unsigned int nBits
 
unsigned int nNonce
 

Static Public Attributes

static const int CURRENT_VERSION =2
 

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.

Definition at line 1278 of file main.h.

Constructor & Destructor Documentation

CBlockHeader::CBlockHeader ( )
inline

Definition at line 1290 of file main.h.

Member Function Documentation

int64 CBlockHeader::GetBlockTime ( ) const
inline

Definition at line 1326 of file main.h.

uint256 CBlockHeader::GetHash ( ) const
inline

Definition at line 1321 of file main.h.

CBlockHeader::IMPLEMENT_SERIALIZE ( READWRITE(this->nVersion);  nVersion = this->nVersionREADWRITE(hashPrevBlock); READWRITE(hashMerkleRoot); READWRITE(nTime); READWRITE(nBits); READWRITE(nNonce);)
inline

Definition at line 1296 of file main.h.

bool CBlockHeader::IsNull ( ) const
inline

Definition at line 1316 of file main.h.

void CBlockHeader::UpdateTime ( const CBlockIndex pindexPrev)

Definition at line 1373 of file main.cpp.

Member Data Documentation

const int CBlockHeader::CURRENT_VERSION =2
static

Definition at line 1282 of file main.h.

uint256 CBlockHeader::hashMerkleRoot

Definition at line 1285 of file main.h.

uint256 CBlockHeader::hashPrevBlock

Definition at line 1284 of file main.h.

unsigned int CBlockHeader::nBits

Definition at line 1287 of file main.h.

unsigned int CBlockHeader::nNonce

Definition at line 1288 of file main.h.

unsigned int CBlockHeader::nTime

Definition at line 1286 of file main.h.

int CBlockHeader::nVersion

Definition at line 1283 of file main.h.


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