pub trait HaveBlockOnDisk {
    // Required method
    fn have_block_on_disk(&mut self, height: i32) -> bool;
}

Required Methods§

source

fn have_block_on_disk(&mut self, height: i32) -> bool

| Check that the block is available on disk | (i.e. has not been pruned), and contains | transactions.

Implementors§