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

Transaction resolver

Required Methods§

source

fn resolve_tx(&self, txid: Txid) -> Result<Transaction, TxResolverError>

Tries to find a transaction by transaction id (Txid)

Implementations on Foreign Types§

source§

impl ResolveTx for BTreeMap<Txid, Transaction>

Implementors§