Switch all feerate u64's to u32's.
[rust-lightning] / fuzz / src / chanmon_consistency.rs
index e0a4d654cca426a85dfa95c78379d9be105313b6..8be994bd7f2c14dd971705aa4e811b55f081ca2d 100644 (file)
@@ -52,7 +52,7 @@ use std::io::Cursor;
 
 struct FuzzEstimator {}
 impl FeeEstimator for FuzzEstimator {
-       fn get_est_sat_per_1000_weight(&self, _: ConfirmationTarget) -> u64 {
+       fn get_est_sat_per_1000_weight(&self, _: ConfirmationTarget) -> u32 {
                253
        }
 }