From 0ccf8ded83b0896a580caaf188232d018ae036dd Mon Sep 17 00:00:00 2001 From: Korrrba Date: Tue, 1 Aug 2023 17:02:36 +0200 Subject: [PATCH] src/deploymentstatus: Add missing taproot_old deployment. Fixes #123 --- src/deploymentstatus.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/deploymentstatus.cpp b/src/deploymentstatus.cpp index 973b0ac9d6..ce73a780ef 100644 --- a/src/deploymentstatus.cpp +++ b/src/deploymentstatus.cpp @@ -11,6 +11,10 @@ const struct VBDeploymentInfo VersionBitsDeploymentInfo[Consensus::MAX_VERSION_B /*.name =*/ "testdummy", /*.gbt_force =*/ true, }, + { + /*.name =*/ "taproot_old", + /*.gbt_force =*/ true, + }, { /*.name =*/ "taproot", /*.gbt_force =*/ true, @@ -33,4 +37,5 @@ std::string DeploymentName(Consensus::BuriedDeployment dep) return "segwit"; } // no default case, so the compiler can warn about missing cases return ""; -} \ No newline at end of file +} +