pub trait FilterDataProvider {
    // Required method
    fn cell(&self, out_point: &OutPoint) -> Option<CellOutput>;
}
Expand description

Provides data for building block filter data.

Required Methods§

source

fn cell(&self, out_point: &OutPoint) -> Option<CellOutput>

Finds the cell through its out point.

Implementors§