pub trait TxoutIsMine {
    // Required method
    fn txout_is_mine(&mut self, txout: &TxOut) -> IsMineType;
}

Required Methods§

source

fn txout_is_mine(&mut self, txout: &TxOut) -> IsMineType

| Return whether transaction output | belongs to wallet. |

Implementors§