pub trait GetCoins {
    // Required method
    fn get_coins(&mut self, outputs: &Vec<OutPoint>) -> Vec<WalletTxOut>;
}

Required Methods§

source

fn get_coins(&mut self, outputs: &Vec<OutPoint>) -> Vec<WalletTxOut>

| Return wallet transaction output information. |

Implementors§