pub trait ResolveTx {
    fn resolve_tx(&self, txid: &Txid) -> Result<Transaction, TxResolverError>;
}
Expand description

Transaction resolver

Required Methods

Tries to find a transaction by transaction id (Txid)

Implementations on Foreign Types

Implementors