pub trait GetUnspentOutput {
    // Required method
    fn get_unspent_output(&mut self, output: &OutPoint, coin: &mut Coin) -> bool;
}

Required Methods§

source

fn get_unspent_output(&mut self, output: &OutPoint, coin: &mut Coin) -> bool

| Get unspent outputs associated with | a transaction. |

Implementors§