lnd/fuzz/lnwire/update_fail_htlc.go

17 lines
371 B
Go
Raw Normal View History

// +build gofuzz
package lnwirefuzz
import (
"github.com/lightningnetwork/lnd/lnwire"
)
// Fuzz_update_fail_htlc is used by go-fuzz.
func Fuzz_update_fail_htlc(data []byte) int {
// Prefix with MsgUpdateFailHTLC.
data = prefixWithMsgType(data, lnwire.MsgUpdateFailHTLC)
// Pass the message into our general fuzz harness for wire messages!
return harness(data)
}