zebra/zebra-chain/src/parameters/network.rs

66 lines
1.8 KiB
Rust
Raw Normal View History

use std::{convert::From, fmt};
use crate::{block::Height, parameters::NetworkUpgrade::Canopy};
#[cfg(any(test, feature = "proptest-impl"))]
use proptest_derive::Arbitrary;
/// An enum describing the possible network choices.
#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash, Serialize, Deserialize)]
#[cfg_attr(any(test, feature = "proptest-impl"), derive(Arbitrary))]
pub enum Network {
/// The production mainnet.
Mainnet,
/// The testnet.
Testnet,
}
impl From<&Network> for &'static str {
fn from(network: &Network) -> &'static str {
match network {
Network::Mainnet => "Mainnet",
Network::Testnet => "Testnet",
}
}
}
impl From<Network> for &'static str {
fn from(network: Network) -> &'static str {
(&network).into()
}
}
impl fmt::Display for Network {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str(self.into())
}
}
2020-09-04 10:19:20 -07:00
impl Network {
/// Get the default port associated to this network.
pub fn default_port(&self) -> u16 {
match self {
Network::Mainnet => 8233,
Network::Testnet => 18233,
}
}
/// Get the mandatory minimum checkpoint height for this network.
///
/// Mandatory checkpoints are a Zebra-specific feature.
/// If a Zcash consensus rule only applies before the mandatory checkpoint,
/// Zebra can skip validation of that rule.
pub fn mandatory_checkpoint_height(&self) -> Height {
// Currently this is the Canopy activation height for both networks.
Canopy
.activation_height(*self)
.expect("Canopy activation height must be present for both networks")
}
2020-09-04 10:19:20 -07:00
}
impl Default for Network {
fn default() -> Self {
Network::Mainnet
}
}