diff options
| author | Kamil Domanski <[email protected]> | 2014-05-05 20:08:13 +0200 |
|---|---|---|
| committer | Kamil Domanski <[email protected]> | 2014-05-13 11:41:59 +0200 |
| commit | 4b61a6a47895309ffb059f986a31c4931b8fe0b4 (patch) | |
| tree | 5b5a011597d5268d828c966287fafeb10e491bcc /src/rpcmining.cpp | |
| parent | Merge pull request #3695 (diff) | |
| download | discoin-4b61a6a47895309ffb059f986a31c4931b8fe0b4.tar.xz discoin-4b61a6a47895309ffb059f986a31c4931b8fe0b4.zip | |
switch from boost int types to <stdint.h>
Diffstat (limited to 'src/rpcmining.cpp')
| -rw-r--r-- | src/rpcmining.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rpcmining.cpp b/src/rpcmining.cpp index cb903b585..23876c603 100644 --- a/src/rpcmining.cpp +++ b/src/rpcmining.cpp @@ -88,7 +88,7 @@ Value GetNetworkHashPS(int lookup, int height) { uint256 workDiff = pb->nChainWork - pb0->nChainWork; int64_t timeDiff = maxTime - minTime; - return (boost::int64_t)(workDiff.getdouble() / timeDiff); + return (int64_t)(workDiff.getdouble() / timeDiff); } Value getnetworkhashps(const Array& params, bool fHelp) @@ -226,8 +226,8 @@ Value gethashespersec(const Array& params, bool fHelp) ); if (GetTimeMillis() - nHPSTimerStart > 8000) - return (boost::int64_t)0; - return (boost::int64_t)dHashesPerSec; + return (int64_t)0; + return (int64_t)dHashesPerSec; } #endif |