Replace difficulty readjustment blocks with Interval()

This commit is contained in:
Shaul Kfir 2015-02-02 12:30:56 -05:00
parent a62649731f
commit f4b2078f72

View file

@ -44,7 +44,7 @@ Value GetNetworkHashPS(int lookup, int height) {
// If lookup is -1, then use blocks since last difficulty change.
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 > pb->nHeight)