Skip to content

Commit

Permalink
Doubling the value of the MAINNET_FIRST_HARD_FORK constant (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
josiasal committed Feb 11, 2022
1 parent 747c7ce commit 2111094
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions core/src/consensus.rs
Original file line number Diff line number Diff line change
Expand Up @@ -311,8 +311,10 @@ pub const BLOCK_KERNEL_WEIGHT: usize = 3;
///
pub const MAX_BLOCK_WEIGHT: usize = 40_000;

/// Mainnet first hard fork height, set to happen around 2020-04-29
pub const MAINNET_FIRST_HARD_FORK: u64 = 1300000;
/// Mainnet first hard fork height
/// Doubled from the previous hard coded value 1300000
/// We might need to change this later for final release
pub const MAINNET_FIRST_HARD_FORK: u64 = 2600000;

/// Floonet first hard fork height
pub const FLOONET_FIRST_HARD_FORK: u64 = 25800;
Expand Down

0 comments on commit 2111094

Please sign in to comment.