pub trait InputPrevout {
    fn input_prevout(&self) -> Result<&TxOut, InputMatchError>;
}
Expand description

API for accessing previous transaction output data

Required methods

Returns TxOut reference returned by resolver, if any, or reports specific matching error prevented from getting the output

Implementations on Foreign Types

Implementors