X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=blobdiff_plain;f=src%2Futil.h;h=6cf2070a86700bccab4f820f0d58aa73de455899;hp=62f26fdb8eed64cce76f733c8a15fa58ff0b2b51;hb=09ccabeb1ace011357b4767aac6566d1cfc99eb6;hpb=73e57db0e728423c3541f5ad7b260e8fd9e6e7d1 diff --git a/src/util.h b/src/util.h index 62f26fd..6cf2070 100644 --- a/src/util.h +++ b/src/util.h @@ -238,7 +238,9 @@ int GetRandInt(int nMax); uint64_t GetRand(uint64_t nMax); uint256 GetRandHash(); int64_t GetTime(); -void SetMockTime(int64_t nMockTimeIn); +int64_t GetTimeMillis(); +int64_t GetTimeMicros(); + int64_t GetAdjustedTime(); int64_t GetTimeOffset(); int64_t GetNodesOffset(); @@ -387,6 +389,12 @@ inline int64_t GetTimeMillis() boost::posix_time::ptime(boost::gregorian::date(1970,1,1))).total_milliseconds(); } +inline int64_t GetTimeMicros() +{ + return (boost::posix_time::microsec_clock::universal_time() - + boost::posix_time::ptime(boost::gregorian::date(1970,1,1))).total_microseconds(); +} + std::string DateTimeStrFormat(const char* pszFormat, int64_t nTime); static const std::string strTimestampFormat = "%Y-%m-%d %H:%M:%S UTC";