Add timeoffset to getinfo RPC call

Provides a method to get the difference between network adjusted time
and local time from the RPC interface.
This commit is contained in:
Peter Todd
2013-01-11 06:11:34 -05:00
parent 429915bd0d
commit 8686f6467c
3 changed files with 8 additions and 1 deletions

View File

@@ -1203,9 +1203,14 @@ void SetMockTime(int64 nMockTimeIn)
static int64 nTimeOffset = 0;
int64 GetTimeOffset()
{
return nTimeOffset;
}
int64 GetAdjustedTime()
{
return GetTime() + nTimeOffset;
return GetTime() + GetTimeOffset();
}
void AddTimeData(const CNetAddr& ip, int64 nTime)