|
|
@ -142,7 +142,7 @@ void UnregisterNodeSignals(CNodeSignals& nodeSignals); |
|
|
|
* @param[out] dbp If pblock is stored to disk (or already there), this will be set to its location. |
|
|
|
* @param[out] dbp If pblock is stored to disk (or already there), this will be set to its location. |
|
|
|
* @return True if state.IsValid() |
|
|
|
* @return True if state.IsValid() |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
bool ProcessNewBlock(CValidationState &state, CNode* pfrom, CBlock* pblock, bool fForceProcessing, CDiskBlockPos *dbp); |
|
|
|
bool ProcessNewBlock(CValidationState &state, const CNode* pfrom, const CBlock* pblock, bool fForceProcessing, CDiskBlockPos *dbp); |
|
|
|
/** Check whether enough disk space is available for an incoming block */ |
|
|
|
/** Check whether enough disk space is available for an incoming block */ |
|
|
|
bool CheckDiskSpace(uint64_t nAdditionalBytes = 0); |
|
|
|
bool CheckDiskSpace(uint64_t nAdditionalBytes = 0); |
|
|
|
/** Open a block file (blk?????.dat) */ |
|
|
|
/** Open a block file (blk?????.dat) */ |
|
|
@ -179,7 +179,7 @@ std::string GetWarnings(const std::string& strFor); |
|
|
|
/** Retrieve a transaction (from memory pool, or from disk, if possible) */ |
|
|
|
/** Retrieve a transaction (from memory pool, or from disk, if possible) */ |
|
|
|
bool GetTransaction(const uint256 &hash, CTransaction &tx, uint256 &hashBlock, bool fAllowSlow = false); |
|
|
|
bool GetTransaction(const uint256 &hash, CTransaction &tx, uint256 &hashBlock, bool fAllowSlow = false); |
|
|
|
/** Find the best known block, and make it the tip of the block chain */ |
|
|
|
/** Find the best known block, and make it the tip of the block chain */ |
|
|
|
bool ActivateBestChain(CValidationState &state, CBlock *pblock = NULL); |
|
|
|
bool ActivateBestChain(CValidationState &state, const CBlock *pblock = NULL); |
|
|
|
CAmount GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams); |
|
|
|
CAmount GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams); |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
@ -335,7 +335,7 @@ public: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Functions for disk access for blocks */ |
|
|
|
/** Functions for disk access for blocks */ |
|
|
|
bool WriteBlockToDisk(CBlock& block, CDiskBlockPos& pos, const CMessageHeader::MessageStartChars& messageStart); |
|
|
|
bool WriteBlockToDisk(const CBlock& block, CDiskBlockPos& pos, const CMessageHeader::MessageStartChars& messageStart); |
|
|
|
bool ReadBlockFromDisk(CBlock& block, const CDiskBlockPos& pos); |
|
|
|
bool ReadBlockFromDisk(CBlock& block, const CDiskBlockPos& pos); |
|
|
|
bool ReadBlockFromDisk(CBlock& block, const CBlockIndex* pindex); |
|
|
|
bool ReadBlockFromDisk(CBlock& block, const CBlockIndex* pindex); |
|
|
|
|
|
|
|
|
|
|
@ -346,7 +346,7 @@ bool ReadBlockFromDisk(CBlock& block, const CBlockIndex* pindex); |
|
|
|
* In case pfClean is provided, operation will try to be tolerant about errors, and *pfClean |
|
|
|
* 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 |
|
|
|
* 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. */ |
|
|
|
* of problems. Note that in any case, coins may be modified. */ |
|
|
|
bool DisconnectBlock(CBlock& block, CValidationState& state, CBlockIndex* pindex, CCoinsViewCache& coins, bool* pfClean = NULL); |
|
|
|
bool DisconnectBlock(const CBlock& block, CValidationState& state, const CBlockIndex* pindex, CCoinsViewCache& coins, bool* pfClean = NULL); |
|
|
|
|
|
|
|
|
|
|
|
/** Apply the effects of this block (with given index) on the UTXO set represented by coins */ |
|
|
|
/** Apply the effects of this block (with given index) on the UTXO set represented by coins */ |
|
|
|
bool ConnectBlock(const CBlock& block, CValidationState& state, CBlockIndex* pindex, CCoinsViewCache& coins, bool fJustCheck = false); |
|
|
|
bool ConnectBlock(const CBlock& block, CValidationState& state, CBlockIndex* pindex, CCoinsViewCache& coins, bool fJustCheck = false); |
|
|
@ -363,7 +363,7 @@ bool ContextualCheckBlock(const CBlock& block, CValidationState& state, CBlockIn |
|
|
|
bool TestBlockValidity(CValidationState &state, const CBlock& block, CBlockIndex *pindexPrev, bool fCheckPOW = true, bool fCheckMerkleRoot = true); |
|
|
|
bool TestBlockValidity(CValidationState &state, const CBlock& block, CBlockIndex *pindexPrev, bool fCheckPOW = true, bool fCheckMerkleRoot = true); |
|
|
|
|
|
|
|
|
|
|
|
/** Store block on disk. If dbp is non-NULL, the file is known to already reside on disk */ |
|
|
|
/** Store block on disk. If dbp is non-NULL, the file is known to already reside on disk */ |
|
|
|
bool AcceptBlock(CBlock& block, CValidationState& state, CBlockIndex **pindex, bool fRequested, CDiskBlockPos* dbp); |
|
|
|
bool AcceptBlock(const CBlock& block, CValidationState& state, CBlockIndex **pindex, bool fRequested, CDiskBlockPos* dbp); |
|
|
|
bool AcceptBlockHeader(const CBlockHeader& block, CValidationState& state, CBlockIndex **ppindex= NULL); |
|
|
|
bool AcceptBlockHeader(const CBlockHeader& block, CValidationState& state, CBlockIndex **ppindex= NULL); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|