You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix potential overflow in fee estimation conversion
Previously, we would cast `FeeRate::to_sat_per_kwu` to `u32`, which
however might result in `u32::max_value` being used if our fee
estimation source delivers huge bogus data. Here, we make sure to use
the fallback rate if we would do so otherwise.
0 commit comments