[#DeploymentActiveAfter-0e] = DeploymentActiveAfter :mrdocs: `DeploymentActiveAfter` overloads == Synopses Declared in `<deploymentstatus.h>` Whether a deployment is active after the given block, resolved via ChainstateManager. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename DEP> bool xref:DeploymentActiveAfter-0d.adoc[DeploymentActiveAfter]( xref:CBlockIndex.adoc[CBlockIndex] const* pindexPrev, xref:ChainstateManager.adoc[ChainstateManager] const& chainman, DEP dep); ---- [.small]#xref:DeploymentActiveAfter-0d.adoc[_» more..._]# Determine if a deployment is active for the next block [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:DeploymentActiveAfter-07.adoc[DeploymentActiveAfter]( xref:CBlockIndex.adoc[CBlockIndex] const* pindexPrev, xref:Consensus/Params.adoc[Consensus::Params] const& params, xref:Consensus/BuriedDeployment.adoc[Consensus::BuriedDeployment] dep, xref:VersionBitsCache.adoc[VersionBitsCache]& versionbitscache); ---- [.small]#xref:DeploymentActiveAfter-07.adoc[_» more..._]# Determine if a version‐bits deployment is active for the next block. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:DeploymentActiveAfter-0b.adoc[DeploymentActiveAfter]( xref:CBlockIndex.adoc[CBlockIndex] const* pindexPrev, xref:Consensus/Params.adoc[Consensus::Params] const& params, xref:Consensus/DeploymentPos.adoc[Consensus::DeploymentPos] dep, xref:VersionBitsCache.adoc[VersionBitsCache]& versionbitscache); ---- [.small]#xref:DeploymentActiveAfter-0b.adoc[_» more..._]# == Return Value * true if the deployment is active after the given block. * true if the deployment is active for the block after pindexPrev. == Parameters [cols="1,4"] |=== | Name| Description | *pindexPrev* | Block index entry of the block the deployment status is queried after. | *chainman* | The chainstate manager providing consensus parameters and cache. | *dep* | The deployment to query. | *params* | The consensus parameters holding the deployment schedule. | *versionbitscache* | Unused for buried deployments; present for overload symmetry. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#