mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-09 12:49:23 +00:00
9 lines
246 B
Rust
9 lines
246 B
Rust
use core::time::Duration;
|
|
|
|
/// The target block time.
|
|
pub const TARGET_BLOCK_TIME: Duration = Duration::from_secs(6);
|
|
|
|
/// The intended duration for a session.
|
|
// 1 week
|
|
pub const SESSION_LENGTH: Duration = Duration::from_secs(7 * 24 * 60 * 60);
|