Skip to content

Commit

Permalink
update genesis and end timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
AurelienFT committed Sep 6, 2023
1 parent 4e32df3 commit 54c3078
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions massa-models/src/config/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ lazy_static::lazy_static! {
)
)
} else {
MassaTime::from_millis(1690894800000) // Tuesday, August 1, 2023 01:00:00 PM UTC
MassaTime::from_millis(1693994400000) // Wednesday, September 6, 2023 10:00:00 PM UTC
};

/// TESTNET: time when the blockclique is ended.
pub static ref END_TIMESTAMP: Option<MassaTime> = if cfg!(feature = "sandbox") {
None
} else {
Some(MassaTime::from_millis(1693486800000)) // Thursday, August 31, 2023 01:00:00 PM UTC
Some(MassaTime::from_millis(1696096800000)) // Saturday, September 30, 2023 06:00:00 PM UTC
};
/// `KeyPair` to sign genesis blocks.
pub static ref GENESIS_KEY: KeyPair = KeyPair::from_str("S1UxdCJv5ckDK8z87E5Jq5fEfSVLi2cTHgtpfZy7iURs3KpPns8")
Expand Down

0 comments on commit 54c3078

Please sign in to comment.