aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/chain.cpp
diff options
context:
space:
mode:
authorRussell Yanofsky <russ@yanofsky.org>2017-07-28 22:54:31 -0400
committerRussell Yanofsky <russ@yanofsky.org>2019-02-22 15:43:02 -0400
commitc5e59a96a8561b6a0bcaba0ede2d53dbaac113b0 (patch)
tree6e2c080795bfea40396407131096fd04b9d5d44d /src/interfaces/chain.cpp
parent6d6bcc77c058fbcfd39c7e3050bbe82fc89024cf (diff)
downloadbitcoin-c5e59a96a8561b6a0bcaba0ede2d53dbaac113b0.tar.xz
Remove uses of GetAdjustedTime in wallet code
This commit does not change behavior.
Diffstat (limited to 'src/interfaces/chain.cpp')
-rw-r--r--src/interfaces/chain.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/interfaces/chain.cpp b/src/interfaces/chain.cpp
index 4abb1e638f..a654f55f55 100644
--- a/src/interfaces/chain.cpp
+++ b/src/interfaces/chain.cpp
@@ -14,6 +14,7 @@
#include <protocol.h>
#include <sync.h>
#include <threadsafety.h>
+#include <timedata.h>
#include <txmempool.h>
#include <uint256.h>
#include <util/system.h>
@@ -237,6 +238,7 @@ public:
}
bool getPruneMode() override { return ::fPruneMode; }
bool p2pEnabled() override { return g_connman != nullptr; }
+ int64_t getAdjustedTime() override { return GetAdjustedTime(); }
};
} // namespace