pub trait OuroborosPraos {
    fn insert_selfish_pos(
        &self,
        blockchain: &mut Blockchain,
        block: &Block
    ) -> bool { ... } fn insert_unselfish_pos(
        &self,
        blockchain: &mut Blockchain,
        block: &Block
    ) -> bool { ... } fn insert(
        &self,
        blockchain: &mut Blockchain,
        block: &Block,
        selfish: bool
    ) -> bool { ... } }

Provided Methods

Implementors