switch from boost int types to <stdint.h>

This commit is contained in:
Kamil Domanski
2014-05-05 20:08:13 +02:00
parent 29c1fbbb97
commit 4b61a6a478
9 changed files with 80 additions and 81 deletions

View File

@@ -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