From 922f94321e6d7267a0eda65fed9bd2d11e6c14d4 Mon Sep 17 00:00:00 2001 From: Davide Grilli Date: Fri, 14 Nov 2025 10:27:23 +0100 Subject: [PATCH] fix(chainparams): update BIP34Height to 1250 for testnet The BIP34 activation height was lowered to match the actual activation point on testnet, ensuring proper block validation behavior. --- src/chainparams.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chainparams.cpp b/src/chainparams.cpp index cc5c02e..b35b1dc 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -185,7 +185,7 @@ public: strNetworkID = CBaseChainParams::TESTNET; consensus.nSubsidyHalvingInterval = 210000; - consensus.BIP34Height = 8192; + consensus.BIP34Height = 1250; consensus.BIP65Height = 0; consensus.BIP66Height = 0; consensus.CSVHeight = 0;