cuprated: update killswitch timestamp for v0.0.2 ()

* update

* Update binaries/cuprated/src/killswitch.rs

Co-authored-by: Boog900 <boog900@tutanota.com>

---------

Co-authored-by: Boog900 <boog900@tutanota.com>
This commit is contained in:
hinto-janai 2025-04-09 10:03:56 -04:00 committed by GitHub
parent 51b56b0a8b
commit 159016f10e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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.
@ -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();