From fa382d3dd0592f3cbd6e1de791449f49e06dae86 Mon Sep 17 00:00:00 2001 From: MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> Date: Mon, 15 Apr 2024 12:57:17 +0200 Subject: test: Add missing Assert(mock_time_in >= 0s) to SetMockTime Also, inline the deprecated alias to avoid having the two go out of sync again in the future. --- src/util/time.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/util/time.cpp b/src/util/time.cpp index 456662bd84..e46a127b14 100644 --- a/src/util/time.cpp +++ b/src/util/time.cpp @@ -29,14 +29,10 @@ NodeClock::time_point NodeClock::now() noexcept return time_point{ret}; }; -void SetMockTime(int64_t nMockTimeIn) -{ - Assert(nMockTimeIn >= 0); - nMockTime.store(nMockTimeIn, std::memory_order_relaxed); -} - +void SetMockTime(int64_t nMockTimeIn) { SetMockTime(std::chrono::seconds{nMockTimeIn}); } void SetMockTime(std::chrono::seconds mock_time_in) { + Assert(mock_time_in >= 0s); nMockTime.store(mock_time_in.count(), std::memory_order_relaxed); } -- cgit v1.2.3