mirror of
https://github.com/Cuprate/cuprate.git
synced 2025-04-23 06:18:12 +00:00
cuprated: update killswitch timestamp for v0.0.2
(#403)
* 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:
parent
51b56b0a8b
commit
159016f10e
1 changed files with 4 additions and 4 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in a new issue