From 6e57b74c60769154593905befbc6fbf597424b60 Mon Sep 17 00:00:00 2001 From: Alex Freska Date: Thu, 23 Jan 2025 10:39:38 -0500 Subject: [PATCH] chore: update network transition mode heights --- cmd/clusterd/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/clusterd/main.go b/cmd/clusterd/main.go index 5516120..ee4beb3 100644 --- a/cmd/clusterd/main.go +++ b/cmd/clusterd/main.go @@ -124,8 +124,8 @@ func main() { n.HardforkV2.AllowHeight = 2 n.HardforkV2.RequireHeight = 3 case "transition": - n.HardforkV2.AllowHeight = 200 // attainable and after 144 - n.HardforkV2.RequireHeight = 300 + n.HardforkV2.AllowHeight = 300 + n.HardforkV2.RequireHeight = 400 default: log.Fatal("invalid network", zap.String("network", network)) }