From 211109430320ef3bc5e16ff6c8dc1cf5a38a0f0f Mon Sep 17 00:00:00 2001 From: Josias Alexandre Oliveira <68741149+josiasal@users.noreply.github.com> Date: Fri, 11 Feb 2022 15:42:07 -0300 Subject: [PATCH] Doubling the value of the MAINNET_FIRST_HARD_FORK constant (#40) --- core/src/consensus.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/src/consensus.rs b/core/src/consensus.rs index 69bc3ce2..edb295d8 100644 --- a/core/src/consensus.rs +++ b/core/src/consensus.rs @@ -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;