pub trait ResolveHeight {
    type Error: Error;

    // Required method
    fn resolve_height(&mut self, txid: Txid) -> Result<u32, Self::Error>;
}

Required Associated Types§

Required Methods§

source

fn resolve_height(&mut self, txid: Txid) -> Result<u32, Self::Error>

Implementors§