pub trait Tip {
    // Required method
    fn tip(&self) -> Option<Arc<BlockIndex>>;
}

Required Methods§

source

fn tip(&self) -> Option<Arc<BlockIndex>>

| Returns the index entry for the tip of | this chain, or nullptr if none. |

Implementors§