bitcoin-coinselect 0.1.16-alpha.0

abstractions for filtering which OutputGroups we may use in coin selection -- an OutputGroup is a group of UTXOs paid to the same output script
Documentation
crate::ix!();

/**
  | Descending order comparator
  |
  */
pub struct DescendingOrderComparator {

}

impl DescendingOrderComparator {
    
    pub fn invoke(&self, 
        a: &OutputGroup,
        b: &OutputGroup) -> bool {
        
        todo!();
        /*
            return a.GetSelectionAmount() > b.GetSelectionAmount();
        */
    }
}