aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGavin Andresen <gavinandresen@gmail.com>2013-02-22 08:47:45 -0800
committerGavin Andresen <gavinandresen@gmail.com>2013-02-22 08:47:45 -0800
commit802a3dfdccdda3cb187a1669b85011a962145780 (patch)
treeb1974f98bf309d150c17aba64adfc064288d7101 /src
parent49e332f6fc4ecc5f631d590ca7d2e69e1db327e1 (diff)
parent8686f6467c9db2606706baca33842c97ff7621f8 (diff)
downloadbitcoin-802a3dfdccdda3cb187a1669b85011a962145780.tar.xz
Merge pull request #2160 from petertodd/add-adjustedtime-to-rpc-getinfo
Add adjustedtime to getinfo RPC call
Diffstat (limited to 'src')
-rw-r--r--src/rpcwallet.cpp1
-rw-r--r--src/util.cpp7
-rw-r--r--src/util.h1
3 files changed, 8 insertions, 1 deletions
diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp
index 90a68f560a..21eb2fd1aa 100644
--- a/src/rpcwallet.cpp
+++ b/src/rpcwallet.cpp
@@ -75,6 +75,7 @@ Value getinfo(const Array& params, bool fHelp)
obj.push_back(Pair("walletversion", pwalletMain->GetVersion()));
obj.push_back(Pair("balance", ValueFromAmount(pwalletMain->GetBalance())));
obj.push_back(Pair("blocks", (int)nBestHeight));
+ obj.push_back(Pair("timeoffset", (boost::int64_t)GetTimeOffset()));
obj.push_back(Pair("connections", (int)vNodes.size()));
obj.push_back(Pair("proxy", (proxy.first.IsValid() ? proxy.first.ToStringIPPort() : string())));
obj.push_back(Pair("difficulty", (double)GetDifficulty()));
diff --git a/src/util.cpp b/src/util.cpp
index d8f05cb9fd..1f66aff609 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -1218,9 +1218,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)
diff --git a/src/util.h b/src/util.h
index 97911d7493..2050604e54 100644
--- a/src/util.h
+++ b/src/util.h
@@ -212,6 +212,7 @@ uint256 GetRandHash();
int64 GetTime();
void SetMockTime(int64 nMockTimeIn);
int64 GetAdjustedTime();
+int64 GetTimeOffset();
std::string FormatFullVersion();
std::string FormatSubVersion(const std::string& name, int nClientVersion, const std::vector<std::string>& comments);
void AddTimeData(const CNetAddr& ip, int64 nTime);