crate::ix!();
pub struct VBDeploymentInfo {
name: *const u8,
gbt_force: bool,
}
lazy_static!{
}
#[inline] pub fn deployment_name_with_deployment_pos(pos: ConsensusDeploymentPos) -> String {
todo!();
}
lazy_static!{
}
pub fn deployment_name(dep: ConsensusBuriedDeployment) -> String {
todo!();
}
lazy_static!{
}
#[inline] pub fn next_deployment_active_after_with_buried_deployment(
pindex_prev: *const BlockIndex,
params: &ChainConsensusParams,
dep: ConsensusBuriedDeployment) -> bool {
todo!();
}
#[inline] pub fn next_deployment_active_after_with_deployment_pos(
pindex_prev: *const BlockIndex,
params: &ChainConsensusParams,
dep: ConsensusDeploymentPos) -> bool {
todo!();
}
#[inline] pub fn deployment_enabled_with_buried_deployment(
params: &ChainConsensusParams,
dep: ConsensusBuriedDeployment) -> bool {
todo!();
}
#[inline] pub fn deployment_enabled_with_deployment_pos(
params: &ChainConsensusParams,
dep: ConsensusDeploymentPos) -> bool {
todo!();
}
lazy_static!{
}
const_assert!{
valid_deployment_with_deployment_pos(ConsensusDeploymentPos::DEPLOYMENT_TESTDUMMY)
}
const_assert!{
!valid_deployment_with_deployment_pos(ConsensusDeploymentPos::MAX_VERSION_BITS_DEPLOYMENTS)
}
lazy_static!{
}
pub const fn is_minimum_deployment_heightincb_for_buried_deployment() -> bool {
true
}
pub const fn is_minimum_deployment_testdummy_for_deployment_pos() -> bool {
true
}
const_assert!{
is_minimum_deployment_heightincb_for_buried_deployment()
}
const_assert!{
is_minimum_deployment_testdummy_for_deployment_pos()
}