Skip to content

Commit

Permalink
Merge pull request #142 from cdonnachie/feature/fastlaunch
Browse files Browse the repository at this point in the history
Implement Fast Launch
  • Loading branch information
ycagel committed Dec 21, 2023
2 parents 80e8539 + a0cfadf commit b75fea6
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/chain.h
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ class CBlockIndex

//! (memory only) Maximum nTime in the chain up to and including this block.
unsigned int nTimeMax{0};
CBlockIndex *lastAlgoBlocks[NUM_ALGOS_IMPL];

CBlockIndex()
{
Expand All @@ -212,6 +213,9 @@ class CBlockIndex
nBits{block.nBits},
nNonce{block.nNonce}
{
for (unsigned i = 0; i < NUM_ALGOS_IMPL; i++)
lastAlgoBlocks[i] = nullptr;
lastAlgoBlocks[GetAlgo()] = this;
}

FlatFilePos GetBlockPos() const {
Expand Down
25 changes: 24 additions & 1 deletion src/pow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ unsigned int GetNextWorkRequiredV4(const CBlockIndex* pindexLast, const Consensu
pindexFirst = pindexFirst->pprev;
}

const CBlockIndex* pindexPrevAlgo = GetLastBlockIndexForAlgo(pindexLast, params, algo);
const CBlockIndex* pindexPrevAlgo = GetLastBlockIndexForAlgoFast(pindexLast, params, algo);
if (pindexPrevAlgo == nullptr || pindexFirst == nullptr)
{
return InitialDifficulty(params, algo);
Expand Down Expand Up @@ -239,6 +239,10 @@ unsigned int GetNextWorkRequiredV4(const CBlockIndex* pindexLast, const Consensu
{
bnNew *= (100 + params.nLocalTargetAdjustment);
bnNew /= 100;
if (i % 16 == 0 && bnNew > UintToArith256(params.powLimit)) {
bnNew = UintToArith256(params.powLimit);
break;
}
}
}

Expand Down Expand Up @@ -343,6 +347,25 @@ const CBlockIndex* GetLastBlockIndexForAlgo(const CBlockIndex* pindex, const Con
return nullptr;
}

const CBlockIndex* GetLastBlockIndexForAlgoFast(const CBlockIndex* pindex, const Consensus::Params& params, int algo)
{
for (; pindex; pindex = pindex->lastAlgoBlocks[algo])
{
if (pindex->GetAlgo() != algo)
continue;
if (params.fPowAllowMinDifficultyBlocks &&
pindex->pprev &&
pindex->nTime > pindex->pprev->nTime + params.nTargetSpacing*2)
{
pindex = pindex->pprev;
continue;
}
return pindex;
}

return nullptr;
}

uint256 GetPoWAlgoHash(const CBlockHeader& block)
{
return block.GetPoWAlgoHash(Params().GetConsensus());
Expand Down
1 change: 1 addition & 0 deletions src/pow.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ unsigned int CalculateNextWorkRequired(const CBlockIndex* pindexLast, int64_t nF
/** Check whether a block hash satisfies the proof-of-work requirement specified by nBits */
bool CheckProofOfWork(uint256 hash, unsigned int nBits, const Consensus::Params&);
const CBlockIndex* GetLastBlockIndexForAlgo(const CBlockIndex* pindex, const Consensus::Params&, int algo);
const CBlockIndex* GetLastBlockIndexForAlgoFast(const CBlockIndex* pindex, const Consensus::Params&, int algo);
uint256 GetPoWAlgoHash(const CBlockHeader& block);

#endif // DIGIBYTE_POW_H
14 changes: 14 additions & 0 deletions src/validation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3097,6 +3097,13 @@ CBlockIndex* BlockManager::AddToBlockIndex(const CBlockHeader& block)
pindexNew->nHeight = pindexNew->pprev->nHeight + 1;
pindexNew->BuildSkip();
}

if (pindexNew->pprev) {
for (unsigned i = 0; i < NUM_ALGOS_IMPL; i++)
pindexNew->lastAlgoBlocks[i] = pindexNew->pprev->lastAlgoBlocks[i];
pindexNew->lastAlgoBlocks[pindexNew->GetAlgo()] = pindexNew;
}

pindexNew->nTimeMax = (pindexNew->pprev ? std::max(pindexNew->pprev->nTimeMax, pindexNew->nTime) : pindexNew->nTime);
pindexNew->nChainWork = (pindexNew->pprev ? pindexNew->pprev->nChainWork : 0) + GetBlockProof(*pindexNew);
pindexNew->RaiseValidity(BLOCK_VALID_TREE);
Expand Down Expand Up @@ -3889,6 +3896,13 @@ bool BlockManager::LoadBlockIndex(
}
if (ShutdownRequested()) return false;
CBlockIndex* pindex = item.second;

if (pindex->pprev) {
for (unsigned i = 0; i < NUM_ALGOS_IMPL; i++)
pindex->lastAlgoBlocks[i] = pindex->pprev->lastAlgoBlocks[i];
pindex->lastAlgoBlocks[pindex->GetAlgo()] = pindex;
}

nHeight = pindex-> nHeight;
pindex->nChainWork = (pindex->pprev ? pindex->pprev->nChainWork : 0) + GetBlockProof(*pindex);
pindex->nTimeMax = (pindex->pprev ? std::max(pindex->pprev->nTimeMax, pindex->nTime) : pindex->nTime);
Expand Down

0 comments on commit b75fea6

Please sign in to comment.