Changed getnetworkhps value to double to avoid overflow.
This commit is contained in:
parent
326f010332
commit
993d089e82
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue