Switch all feerate u64's to u32's.
[rust-lightning] / lightning / src / chain / chaininterface.rs
index c187d2f8b055d3c0962276e6a50845a161b0a672..89c57dc44c06a39ce0067f8572fc6cdba7da2de6 100644 (file)
@@ -119,7 +119,7 @@ pub trait FeeEstimator: Sync + Send {
        /// This translates to:
        ///  * satoshis-per-byte * 250
        ///  * ceil(satoshis-per-kbyte / 4)
-       fn get_est_sat_per_1000_weight(&self, confirmation_target: ConfirmationTarget) -> u64;
+       fn get_est_sat_per_1000_weight(&self, confirmation_target: ConfirmationTarget) -> u32;
 }
 
 /// Minimum relay fee as required by bitcoin network mempool policy.