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 +} +