diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-02-09 11:07:53 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-02-09 11:08:40 +0100 |
| commit | b49a62379900762a39c2f00dcad764076426d954 (patch) | |
| tree | f03bec8f3cbc8a511e9589e346c1f97fc7179b6f /src/rpc/mining.cpp | |
| parent | Merge #7482: [P2P] Ensure headers count is correct (diff) | |
| parent | Changed getnetworkhps value to double to avoid overflow. (diff) | |
| download | discoin-b49a62379900762a39c2f00dcad764076426d954.tar.xz discoin-b49a62379900762a39c2f00dcad764076426d954.zip | |
Merge #7480: Changed getnetworkhps value to double to avoid overflow.
993d089 Changed getnetworkhps value to double to avoid overflow. (instagibbs)
Diffstat (limited to 'src/rpc/mining.cpp')
| -rw-r--r-- | src/rpc/mining.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/mining.cpp b/src/rpc/mining.cpp index 996b7f9cb..fec0987a4 100644 --- a/src/rpc/mining.cpp +++ b/src/rpc/mining.cpp @@ -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) |