mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 13:03:17 +01:00
Merge pull request #5739
f4b2078
Replace difficulty readjustment blocks with Interval() (Shaul Kfir)
This commit is contained in:
commit
7225577f6b
@ -44,7 +44,7 @@ Value GetNetworkHashPS(int lookup, int height) {
|
|||||||
|
|
||||||
// If lookup is -1, then use blocks since last difficulty change.
|
// If lookup is -1, then use blocks since last difficulty change.
|
||||||
if (lookup <= 0)
|
if (lookup <= 0)
|
||||||
lookup = pb->nHeight % 2016 + 1;
|
lookup = pb->nHeight % Params().Interval() + 1;
|
||||||
|
|
||||||
// If lookup is larger than chain, then set it to chain length.
|
// If lookup is larger than chain, then set it to chain length.
|
||||||
if (lookup > pb->nHeight)
|
if (lookup > pb->nHeight)
|
||||||
|
Loading…
Reference in New Issue
Block a user