![]() |
Feathercoin
0.5.0
P2P Digital Currency
|
The block chain is a tree shaped structure starting with the genesis block at the root, with each block potentially having multiple candidates to be the next block. More...
#include <main.h>
Public Types | |
enum | { nMedianTimeSpan =11 } |
Public Member Functions | |
CBlockIndex () | |
CBlockIndex (CBlockHeader &block) | |
CDiskBlockPos | GetBlockPos () const |
CDiskBlockPos | GetUndoPos () const |
CBlockHeader | GetBlockHeader () const |
uint256 | GetBlockHash () const |
int64 | GetBlockTime () const |
CBigNum | GetBlockWork () const |
bool | IsInMainChain () const |
bool | CheckIndex () const |
int64 | GetMedianTimePast () const |
int64 | GetMedianTime () const |
std::string | ToString () const |
void | print () const |
Static Public Member Functions | |
static bool | IsSuperMajority (int minVersion, const CBlockIndex *pstart, unsigned int nRequired, unsigned int nToCheck) |
Returns true if there are nRequired or more blocks of minVersion or above in the last nToCheck blocks, starting at pstart and going backwards. More... | |
Public Attributes | |
const uint256 * | phashBlock |
CBlockIndex * | pprev |
CBlockIndex * | pnext |
int | nHeight |
int | nFile |
unsigned int | nDataPos |
unsigned int | nUndoPos |
uint256 | nChainWork |
unsigned int | nTx |
unsigned int | nChainTx |
unsigned int | nStatus |
int | nVersion |
uint256 | hashMerkleRoot |
unsigned int | nTime |
unsigned int | nBits |
unsigned int | nNonce |
The block chain is a tree shaped structure starting with the genesis block at the root, with each block potentially having multiple candidates to be the next block.
pprev and pnext link a path through the main/longest chain. A blockindex may have multiple pprev pointing back to it, but pnext will only point forward to the longest branch, or will be null if the block is not part of the longest chain.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
static |
CBlockIndex* CBlockIndex::pnext |
CBlockIndex* CBlockIndex::pprev |