mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
fc444741f1
create llarp/constants/time.hpp for time/duration constants
11 lines
215 B
C++
11 lines
215 B
C++
#pragma once
|
|
|
|
#include <chrono>
|
|
|
|
namespace llarp
|
|
{
|
|
using namespace std::literals;
|
|
/// how big of a time skip before we reset network state
|
|
constexpr auto TimeskipDetectedDuration = 1min;
|
|
} // namespace llarp
|