Merge #7480: Changed getnetworkhps value to double to avoid overflow.

993d089 Changed getnetworkhps value to double to avoid overflow. (instagibbs)
This commit is contained in:
Wladimir J. van der Laan 2016-02-09 11:07:53 +01:00
commit b49a623799
No known key found for this signature in database
GPG key ID: 74810B012346C9A6

View file

@ -68,7 +68,7 @@ UniValue GetNetworkHashPS(int lookup, int height) {
arith_uint256 workDiff = pb->nChainWork - pb0->nChainWork;
int64_t timeDiff = maxTime - minTime;
return (int64_t)(workDiff.getdouble() / timeDiff);
return workDiff.getdouble() / timeDiff;
}
UniValue getnetworkhashps(const UniValue& params, bool fHelp)