From 50d67f28460f8b3193107dea79f5e7a455dfc277 Mon Sep 17 00:00:00 2001 From: Zachary Brown Date: Mon, 20 Oct 2025 10:29:28 -0700 Subject: [PATCH] Add HARD_FORK_HEIGHT override for testneta in defaults --- chia/consensus/default_constants.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/chia/consensus/default_constants.py b/chia/consensus/default_constants.py index 7d2b93fe5ad4..b2dc67a883a5 100644 --- a/chia/consensus/default_constants.py +++ b/chia/consensus/default_constants.py @@ -111,3 +111,6 @@ def update_testnet_overrides(network_id: str, overrides: dict[str, Any]) -> None if network_id in {"testnet11", "testneta"}: if "MIN_PLOT_SIZE_V2" not in overrides: overrides["MIN_PLOT_SIZE_V2"] = 18 + if network_id == "testneta": + if "HARD_FORK_HEIGHT" not in overrides: + overrides["HARD_FORK_HEIGHT"] = 3693395