mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-07 15:20:31 +00:00
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
|