Changed getnetworkhps value to double to avoid overflow.

This commit is contained in:
instagibbs 2016-02-08 10:49:27 -05:00
parent 326f010332
commit 993d089e82
1 changed files with 1 additions and 1 deletions

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)