pub trait ChainNext {
    // Required method
    fn next(&self, pindex: Option<Arc<BlockIndex>>) -> Option<Arc<BlockIndex>>;
}

Required Methods§

source

fn next(&self, pindex: Option<Arc<BlockIndex>>) -> Option<Arc<BlockIndex>>

Implementors§