From 63d436570233479c1f2b16103829fdde3213e206 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Tue, 17 Nov 2020 16:08:44 -0500 Subject: [PATCH] [fuzz] Don't allow HandleError in chanmon_consistency We should never generate Ignore-action HandleError events anymore --- fuzz/src/chanmon_consistency.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/fuzz/src/chanmon_consistency.rs b/fuzz/src/chanmon_consistency.rs index 8a17719f9..441931d65 100644 --- a/fuzz/src/chanmon_consistency.rs +++ b/fuzz/src/chanmon_consistency.rs @@ -596,10 +596,6 @@ pub fn do_test(data: &[u8], out: Out) { // Can be generated due to a payment forward being rejected due to a // channel having previously failed a monitor update }, - events::MessageSendEvent::HandleError { action: ErrorAction::IgnoreError, .. } => { - // Can be generated at any processing step to send back an error, disconnect - // peer or just ignore - }, _ => panic!("Unhandled message event"), } } -- 2.39.5