Trait ckb_types::core::cell::CellChecker[][src]

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