From 459d3fc9937204b654d9dc35a5598adae7ba84a4 Mon Sep 17 00:00:00 2001 From: Gabriel Levcovitz Date: Thu, 18 Jan 2024 22:34:58 -0300 Subject: [PATCH] feat(feature-activation): update NOP features config on mainnet --- hathor/conf/mainnet.py | 4 ++-- hathor/conf/mainnet.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/hathor/conf/mainnet.py b/hathor/conf/mainnet.py index 7acc9a499..a49a2aec7 100644 --- a/hathor/conf/mainnet.py +++ b/hathor/conf/mainnet.py @@ -204,7 +204,7 @@ features={ Feature.NOP_FEATURE_1: Criteria( bit=0, - start_height=4_213_440, # N (right now the best block is 4_161_800 on mainnet) + start_height=4_213_440, # N (right now the best block is 4_169_000 on mainnet) timeout_height=4_253_760, # N + 2 * 20160 (2 weeks after the start) minimum_activation_height=4_273_920, # N + 3 * 20160 (3 weeks after the start) lock_in_on_timeout=False, @@ -213,7 +213,7 @@ ), Feature.NOP_FEATURE_2: Criteria( bit=1, - start_height=4_193_280, # N (right now the best block is 4_133_220 on mainnet) + start_height=4_213_440, # N (right now the best block is 4_169_000 on mainnet) timeout_height=4_253_760, # N + 2 * 20160 (2 weeks after the start) minimum_activation_height=0, lock_in_on_timeout=False, diff --git a/hathor/conf/mainnet.yml b/hathor/conf/mainnet.yml index 7a83fd8a1..0cefc6b56 100644 --- a/hathor/conf/mainnet.yml +++ b/hathor/conf/mainnet.yml @@ -187,7 +187,7 @@ FEATURE_ACTIVATION: NOP_FEATURE_1: bit: 0 - start_height: 4_213_440 # N (right now the best block is 4_161_800 on mainnet) + start_height: 4_213_440 # N (right now the best block is 4_169_000 on mainnet) timeout_height: 4_253_760 # N + 2 * 20160 (2 weeks after the start) minimum_activation_height: 4_273_920 # N + 3 * 20160 (3 weeks after the start) lock_in_on_timeout: false @@ -196,7 +196,7 @@ FEATURE_ACTIVATION: NOP_FEATURE_2: bit: 1 - start_height: 4_193_280 # N (right now the best block is 4_133_220 on mainnet) + start_height: 4_213_440 # N (right now the best block is 4_169_000 on mainnet) timeout_height: 4_253_760 # N + 2 * 20160 (2 weeks after the start) minimum_activation_height: 0 lock_in_on_timeout: false