From 8f8d27aca479cb1456899acf7a4127aa06d4763f Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Wed, 28 Jan 2026 18:52:56 +0100 Subject: [PATCH] push out testnet11 soft fork activation height by 8 days (40000 blocks) (#20445) --- chia/_tests/util/test_testnet_overrides.py | 6 +++--- chia/consensus/default_constants.py | 2 +- chia/util/initial-config.yaml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/chia/_tests/util/test_testnet_overrides.py b/chia/_tests/util/test_testnet_overrides.py index fd0b3541aa..f201c12827 100644 --- a/chia/_tests/util/test_testnet_overrides.py +++ b/chia/_tests/util/test_testnet_overrides.py @@ -8,19 +8,19 @@ from chia.consensus.default_constants import update_testnet_overrides def test_testnet11() -> None: overrides: dict[str, Any] = {} update_testnet_overrides("testnet11", overrides) - assert overrides == {"PLOT_SIZE_V2": 28, "SOFT_FORK8_HEIGHT": 3680000} + assert overrides == {"PLOT_SIZE_V2": 28, "SOFT_FORK8_HEIGHT": 3720000} def test_min_plot_size() -> None: overrides: dict[str, Any] = {"MIN_PLOT_SIZE": 18} update_testnet_overrides("testnet11", overrides) - assert overrides == {"MIN_PLOT_SIZE_V1": 18, "PLOT_SIZE_V2": 28, "SOFT_FORK8_HEIGHT": 3680000} + assert overrides == {"MIN_PLOT_SIZE_V1": 18, "PLOT_SIZE_V2": 28, "SOFT_FORK8_HEIGHT": 3720000} def test_max_plot_size() -> None: overrides: dict[str, Any] = {"MAX_PLOT_SIZE": 32} update_testnet_overrides("testnet11", overrides) - assert overrides == {"MAX_PLOT_SIZE_V1": 32, "PLOT_SIZE_V2": 28, "SOFT_FORK8_HEIGHT": 3680000} + assert overrides == {"MAX_PLOT_SIZE_V1": 32, "PLOT_SIZE_V2": 28, "SOFT_FORK8_HEIGHT": 3720000} def test_mainnet() -> None: diff --git a/chia/consensus/default_constants.py b/chia/consensus/default_constants.py index 3d4fb28d03..088ae8870d 100644 --- a/chia/consensus/default_constants.py +++ b/chia/consensus/default_constants.py @@ -113,7 +113,7 @@ def update_testnet_overrides(network_id: str, overrides: dict[str, Any]) -> None if "PLOT_SIZE_V2" not in overrides: overrides["PLOT_SIZE_V2"] = 28 if "SOFT_FORK8_HEIGHT" not in overrides: - overrides["SOFT_FORK8_HEIGHT"] = 3680000 + overrides["SOFT_FORK8_HEIGHT"] = 3720000 if network_id == "testneta": if "HARD_FORK_HEIGHT" not in overrides: overrides["HARD_FORK_HEIGHT"] = 3693395 diff --git a/chia/util/initial-config.yaml b/chia/util/initial-config.yaml index 8565422cfb..eb42e83cb1 100644 --- a/chia/util/initial-config.yaml +++ b/chia/util/initial-config.yaml @@ -38,7 +38,7 @@ network_overrides: &network_overrides SUB_SLOT_ITERS_STARTING: 67108864 # Forks activated from the beginning on this network HARD_FORK_HEIGHT: 0 - SOFT_FORK8_HEIGHT: 3680000 + SOFT_FORK8_HEIGHT: 3720000 PLOT_FILTER_128_HEIGHT: 6029568 PLOT_FILTER_64_HEIGHT: 11075328 PLOT_FILTER_32_HEIGHT: 16121088