|
| CBlock () |
|
| CBlock (const CBlockHeader &header) |
|
| IMPLEMENT_SERIALIZE (READWRITE(*(CBlockHeader *) this);READWRITE(vtx);) void SetNull() |
|
uint256 | GetPoWHash () const |
|
CBlockHeader | GetBlockHeader () const |
|
uint256 | BuildMerkleTree () const |
|
const uint256 & | GetTxHash (unsigned int nIndex) const |
|
std::vector< uint256 > | GetMerkleBranch (int nIndex) const |
|
bool | WriteToDisk (CDiskBlockPos &pos) |
|
bool | ReadFromDisk (const CDiskBlockPos &pos) |
|
void | print () const |
|
bool | DisconnectBlock (CValidationState &state, CBlockIndex *pindex, CCoinsViewCache &coins, bool *pfClean=NULL) |
| Undo the effects of this block (with given index) on the UTXO set represented by coins. More...
|
|
bool | ConnectBlock (CValidationState &state, CBlockIndex *pindex, CCoinsViewCache &coins, bool fJustCheck=false) |
|
bool | ReadFromDisk (const CBlockIndex *pindex) |
|
bool | AddToBlockIndex (CValidationState &state, const CDiskBlockPos &pos) |
|
bool | CheckBlock (CValidationState &state, bool fCheckPOW=true, bool fCheckMerkleRoot=true) const |
|
bool | AcceptBlock (CValidationState &state, CDiskBlockPos *dbp=NULL) |
|
Definition at line 1334 of file main.h.
Undo the effects of this block (with given index) on the UTXO set represented by coins.
In case pfClean is provided, operation will try to be tolerant about errors, and *pfClean will be true if no problems were found. Otherwise, the return value will be false in case of problems. Note that in any case, coins may be modified.
Definition at line 1558 of file main.cpp.