Trait ckb_types::core::cell::CellChecker

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

Trait for check cell status

Required Methods§

source

fn is_live(&self, out_point: &OutPoint) -> Option<bool>

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

Implementors§