Skip to content

Commit

Permalink
consensus: set testnet bootstrap timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
aggstam committed Feb 27, 2023
1 parent e4cb9ac commit 0766e91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/consensus/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ 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(1676314800);
pub static ref TESTNET_GENESIS_TIMESTAMP: Timestamp = Timestamp(1677531600);

/// Bootstrap timestamp for the testnet chain
pub static ref TESTNET_BOOTSTRAP_TIMESTAMP: Timestamp = Timestamp(1676314800);
pub static ref TESTNET_BOOTSTRAP_TIMESTAMP: Timestamp = Timestamp(1677531600);

/// Total sum of initial staking coins for the testnet chain
pub static ref TESTNET_INITIAL_DISTRIBUTION: u64 = 1000;
Expand Down

0 comments on commit 0766e91

Please sign in to comment.