Enforce `max_balance_dust_htlc_msat` at HTLC reception/forward
[rust-lightning] / fuzz / src / chanmon_consistency.rs
index 70ddac5d204225365a5be66b9c0348d69d3642d5..36d12ad5bb00c9567f141e68634ef7fbe0b6f7ef 100644 (file)
@@ -244,6 +244,7 @@ fn check_api_err(api_err: APIError) {
                                _ if err.starts_with("Cannot send value that would put counterparty balance under holder-announced channel reserve value") => {},
                                _ if err.starts_with("Cannot send value that would overdraw remaining funds.") => {},
                                _ if err.starts_with("Cannot send value that would not leave enough to pay for fees.") => {},
+                               _ if err.starts_with("Cannot send value that would put our exposure to dust HTLCs at") => {},
                                _ => panic!("{}", err),
                        }
                },