zebra_chain/parameters/genesis.rs
1//! Genesis consensus parameters for each Zcash network.
2
3/// The previous block hash for the genesis block.
4///
5/// All known networks use the Bitcoin `null` value for the parent of the
6/// genesis block. (In Bitcoin, `null` is `[0; 32]`.)
7pub const GENESIS_PREVIOUS_BLOCK_HASH: crate::block::Hash = crate::block::Hash([0; 32]);