mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 21:12:48 +01:00
Trivial optimization: use GetAncestor to compute new target
This commit is contained in:
parent
8e4fd0cc31
commit
1cc0e96e9c
@ -42,9 +42,9 @@ unsigned int GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHead
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Go back by what we want to be 14 days worth of blocks
|
// Go back by what we want to be 14 days worth of blocks
|
||||||
const CBlockIndex* pindexFirst = pindexLast;
|
int nHeightFirst = pindexLast->nHeight - (params.DifficultyAdjustmentInterval()-1);
|
||||||
for (int i = 0; pindexFirst && i < params.DifficultyAdjustmentInterval()-1; i++)
|
assert(nHeightFirst >= 0);
|
||||||
pindexFirst = pindexFirst->pprev;
|
const CBlockIndex* pindexFirst = pindexLast->GetAncestor(nHeightFirst);
|
||||||
assert(pindexFirst);
|
assert(pindexFirst);
|
||||||
|
|
||||||
return CalculateNextWorkRequired(pindexLast, pindexFirst->GetBlockTime(), params);
|
return CalculateNextWorkRequired(pindexLast, pindexFirst->GetBlockTime(), params);
|
||||||
|
Loading…
Reference in New Issue
Block a user