From 567ff5d7510500e34aec1377c6fca5d328159f2a Mon Sep 17 00:00:00 2001 From: Matt Morehouse Date: Wed, 13 Nov 2024 15:41:26 -0600 Subject: [PATCH] wtwire: remove incorrect function comment The harness doesn't return anything, so don't say that it does. --- watchtower/wtwire/fuzz_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/watchtower/wtwire/fuzz_test.go b/watchtower/wtwire/fuzz_test.go index 4ed69487c..0691b956e 100644 --- a/watchtower/wtwire/fuzz_test.go +++ b/watchtower/wtwire/fuzz_test.go @@ -21,8 +21,7 @@ func prefixWithMsgType(data []byte, prefix MessageType) []byte { // wireMsgHarness performs the actual fuzz testing of the appropriate wire // message. This function will check that the passed-in message passes wire // length checks, is a valid message once deserialized, and passes a sequence of -// serialization and deserialization checks. Returns an int that determines -// whether the input is unique or not. +// serialization and deserialization checks. func wireMsgHarness(t *testing.T, data []byte, emptyMsg Message) { t.Helper()