crate::ix!();
pub struct CompareTxMemPoolEntryByDescendantScore {
}
impl CompareTxMemPoolEntryByDescendantScore {
pub fn invoke(&self,
a: &TxMemPoolEntry,
b: &TxMemPoolEntry) -> bool {
todo!();
}
pub fn get_mod_fee_and_size(&self,
a: &TxMemPoolEntry,
mod_fee: &mut f64,
size: &mut f64) {
todo!();
}
}
pub struct CompareTxMemPoolEntryByScore {
}
impl CompareTxMemPoolEntryByScore {
pub fn invoke(&self,
a: &TxMemPoolEntry,
b: &TxMemPoolEntry) -> bool {
todo!();
}
}
pub struct CompareTxMemPoolEntryByEntryTime {
}
impl CompareTxMemPoolEntryByEntryTime {
pub fn invoke(&self,
a: &TxMemPoolEntry,
b: &TxMemPoolEntry) -> bool {
todo!();
}
}
pub struct CompareTxMemPoolEntryByAncestorFee {
}
impl CompareTxMemPoolEntryByAncestorFee {
pub fn invoke<T>(&self, a: &T, b: &T) -> bool {
todo!();
}
pub fn get_mod_fee_and_size<T>(&self,
a: &T,
mod_fee: &mut f64,
size: &mut f64) {
todo!();
}
}
pub struct CompareIteratorByHash {
}
impl CompareIteratorByHash {
pub fn invoke_with_refwrapper<T>(&self,
a: Amo<T>,
b: Amo<T>) -> bool {
todo!();
}
pub fn invoke<T>(&self, a: &T, b: &T) -> bool {
todo!();
}
}