diff options
-rw-r--r-- | src/util/time.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/util/time.h b/src/util/time.h index 52679a2647..c4f930781a 100644 --- a/src/util/time.h +++ b/src/util/time.h @@ -43,7 +43,12 @@ int64_t GetTimeMicros(); /** Returns the system time (not mockable) */ int64_t GetSystemTimeInSeconds(); // Like GetTime(), but not mockable -/** For testing. Set e.g. with the setmocktime rpc, or -mocktime argument */ +/** + * DEPRECATED + * Use SetMockTime with chrono type + * + * @param[in] nMockTimeIn Time in seconds. + */ void SetMockTime(int64_t nMockTimeIn); /** For testing. Set e.g. with the setmocktime rpc, or -mocktime argument */ |