Browse Source

consensus: Update testnet genesis timestamp to now.

parazyd 3 years ago
parent
commit
2394346f0a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/consensus/constants.rs

+ 1 - 1
src/consensus/constants.rs

@@ -31,7 +31,7 @@ lazy_static! {
     pub static ref TESTNET_GENESIS_HASH_BYTES: blake3::Hash = blake3::hash(b"darkfi_testnet");
 
     /// Genesis timestamp for the testnet chain
-    pub static ref TESTNET_GENESIS_TIMESTAMP: Timestamp = Timestamp(1650887115);
+    pub static ref TESTNET_GENESIS_TIMESTAMP: Timestamp = Timestamp(1670506503);
 
     // Commonly used Float10
     pub static ref  FLOAT10_ZERO: Float10 = Float10::from_str_native("0").unwrap().with_precision(RADIX_BITS).value();