logo
pub trait GetTx {
    fn get_tx(&self, txid: &Txid) -> Result<Option<Transaction>, Error>;
}
Expand description

Trait for getting a transaction by txid

Required Methods

Fetch a transaction given its txid

Implementations on Foreign Types

Implementors