decred / dcrpool

decred mining pool
ISC License
29 stars 27 forks source link

pool: Use bitlen for calculating iterations. #360

Closed davecgh closed 1 year ago

davecgh commented 1 year ago

This switches the calculation for the number of iterations to use the pow limit bit length as opposed to a less accurate round trip through a log2 float64 approximation.

davecgh commented 1 year ago

There are also instances of this which can be updated in difficulty.go and client_test.go.

Updated.