From 2818f1fed97ba69cb6fe35fd542c0307e72375a2 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 2 Apr 2026 07:43:29 +0100 Subject: [PATCH] feat(status): show HF5 ACTIVE when height >= 11500 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Status command now shows "HF5 ACTIVE — confidential assets enabled" instead of nothing when HF5 has already activated. Co-Authored-By: Charon --- cmd_status.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd_status.go b/cmd_status.go index bbc081d..7b45c96 100644 --- a/cmd_status.go +++ b/cmd_status.go @@ -47,6 +47,9 @@ func runStatus(seed string, testnet bool) error { if hf5Remaining > 0 { core.Print(nil, "") core.Print(nil, " HF5 in %d blocks (~%.1f hours)", hf5Remaining, float64(hf5Remaining)*2/60) + } else { + core.Print(nil, "") + core.Print(nil, " HF5 ACTIVE — confidential assets enabled") } return nil