Convert fee API to per_kw instead of per_vb
[rust-lightning] / fuzz / fuzz_targets / channel_target.rs
index fd23d9c2f876010d7287bfc1f08429c697f496d0..27891e11aa9aad2e96783659158fbc4d81aa5eac 100644 (file)
@@ -80,10 +80,10 @@ struct FuzzEstimator<'a> {
        input: &'a InputData<'a>,
 }
 impl<'a> FeeEstimator for FuzzEstimator<'a> {
-       fn get_est_sat_per_vbyte(&self, _: ConfirmationTarget) -> u64 {
+       fn get_est_sat_per_1000_weight(&self, _: ConfirmationTarget) -> u64 {
                //TODO: We should actually be testing at least much more than 64k...
                match self.input.get_slice(2) {
-                       Some(slice) => slice_to_be16(slice) as u64,
+                       Some(slice) => slice_to_be16(slice) as u64 * 250,
                        None => 0
                }
        }