9 if (pindex ==
nullptr) {
17 pindex = pindex->
pprev;
23 std::vector<BlockHash> vHave;
44 if (vHave.size() > 10) {
53 if (pindex ==
nullptr) {
59 while (pindex && !
Contains(pindex)) {
60 pindex = pindex->
pprev;
66 std::pair<int64_t, int> blockparams = std::make_pair(nTime, height);
67 std::vector<CBlockIndex *>::const_iterator lower = std::lower_bound(
70 const std::pair<int64_t, int> &_blockparams) ->
bool {
71 return pBlock->GetBlockTimeMax() < _blockparams.first ||
72 pBlock->nHeight < _blockparams.second;
74 return (lower ==
vChain.end() ?
nullptr : *lower);
82 if (fNegative || fOverflow || bnTarget == 0) {
89 return (~bnTarget / (bnTarget + 1)) + 1;
106 return sign * std::numeric_limits<int64_t>::max();
108 return sign * int64_t(r.
GetLow64());
123 while (pa != pb && pa && pb) {
arith_uint256 GetBlockProof(const CBlockIndex &block)
const CBlockIndex * LastCommonAncestor(const CBlockIndex *pa, const CBlockIndex *pb)
Find the last common ancestor two blocks have.
int64_t GetBlockProofEquivalentTime(const CBlockIndex &to, const CBlockIndex &from, const CBlockIndex &tip, const Consensus::Params ¶ms)
Return the time it would take to redo the work difference between from and to, assuming the current h...
bool AreOnTheSameFork(const CBlockIndex *pa, const CBlockIndex *pb)
Check if two block index are on the same fork.
The block chain is a tree shaped structure starting with the genesis block at the root,...
CBlockIndex * pprev
pointer to the index of the predecessor of this block
arith_uint256 nChainWork
(memory only) Total amount of work (expected number of hashes) in the chain up to and including this ...
CBlockIndex * pskip
pointer to the index of some further predecessor of this block
CBlockIndex * GetAncestor(int height)
Efficiently find an ancestor of this block.
BlockHash GetBlockHash() const
int nHeight
height of the entry in the chain. The genesis block has height 0
CBlockIndex * Tip() const
Returns the index entry for the tip of this chain, or nullptr if none.
CBlockLocator GetLocator(const CBlockIndex *pindex=nullptr) const
Return a CBlockLocator that refers to a block in this chain (by default the tip).
CBlockIndex * FindEarliestAtLeast(int64_t nTime, int height) const
Find the earliest block with timestamp equal or greater than the given time and height equal or great...
int Height() const
Return the maximal height in the chain.
const CBlockIndex * FindFork(const CBlockIndex *pindex) const
Find the last common block between this chain and a block index entry.
void SetTip(CBlockIndex *pindex)
Set/initialize a chain with a given tip.
std::vector< CBlockIndex * > vChain
bool Contains(const CBlockIndex *pindex) const
Efficiently check whether a block is present in this chain.
256-bit unsigned big integer.
arith_uint256 & SetCompact(uint32_t nCompact, bool *pfNegative=nullptr, bool *pfOverflow=nullptr)
The "compact" format is a representation of a whole number N using an unsigned 32bit number similar t...
uint64_t GetLow64() const
unsigned int bits() const
Returns the position of the highest bit set plus one, or zero if the value is zero.
Describes a place in the block chain to another node such that if the other node doesn't have the sam...
Parameters that influence chain consensus.
int64_t nPowTargetSpacing