pub trait CellChecker {
    fn is_live(&self, out_point: &OutPoint) -> Option<bool>;
}
Expand description

Trait for check cell status

Required Methods

Returns true if the cell is live corresponding to specified out_point.

Implementors