crate::ix!();
pub struct HDChain {
n_external_chain_counter: u32,
n_internal_chain_counter: u32,
seed_id: KeyID,
n_version: i32,
}
pub mod hd_chain {
pub const VERSION_HD_BASE: i32 = 1;
pub const VERSION_HD_CHAIN_SPLIT: i32 = 2;
pub const CURRENT_VERSION: i32 = VERSION_HD_CHAIN_SPLIT;
}
lazy_static!{
}
impl Default for HDChain {
fn default() -> Self {
todo!();
}
}
impl PartialEq<HDChain> for HDChain {
#[inline] fn eq(&self, other: &HDChain) -> bool {
todo!();
}
}
impl Eq for HDChain {}
impl HDChain {
pub fn set_null(&mut self) {
todo!();
}
}