Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions binaries/cuprated/src/killswitch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ const _: () = {

/// The killswitch activates if the current timestamp is ahead of this timestamp.
///
/// Wed Apr 16 12:00:00 AM UTC 2025
pub const KILLSWITCH_ACTIVATION_TIMESTAMP: u64 = 1744761600;
/// Wed May 14 12:00:00 AM UTC 2025
pub const KILLSWITCH_ACTIVATION_TIMESTAMP: u64 = 1747180800;

/// Check if the system clock is past a certain timestamp,
/// if so, exit the entire program.
Expand All @@ -44,8 +44,8 @@ fn killswitch() {
/// sanity checking the system's clock to make
/// sure it is not overly behind.
///
/// Tue Mar 11 08:33:20 PM UTC 2025
const SYSTEM_CLOCK_SANITY_TIMESTAMP: u64 = 1741725200;
/// Tue April 8 12:00:00 AM UTC 2025
const SYSTEM_CLOCK_SANITY_TIMESTAMP: u64 = 1744070400;

let current_ts = current_unix_timestamp();

Expand Down