pub trait EstimateSmartFee {
// Required method
fn estimate_smart_fee(
&mut self,
num_blocks: i32,
conservative: bool,
calc: *mut FeeCalculation
) -> FeeRate;
}
Required Methods§
sourcefn estimate_smart_fee(
&mut self,
num_blocks: i32,
conservative: bool,
calc: *mut FeeCalculation
) -> FeeRate
fn estimate_smart_fee( &mut self, num_blocks: i32, conservative: bool, calc: *mut FeeCalculation ) -> FeeRate
| Estimate smart fee. |