mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-04 17:55:36 +01:00
16 lines
343 B
Go
16 lines
343 B
Go
// +build gofuzz
|
|
|
|
package lnwirefuzz
|
|
|
|
import (
|
|
"github.com/lightningnetwork/lnd/lnwire"
|
|
)
|
|
|
|
// Fuzz_shutdown is used by go-fuzz.
|
|
func Fuzz_shutdown(data []byte) int {
|
|
// Prefix with MsgShutdown.
|
|
data = prefixWithMsgType(data, lnwire.MsgShutdown)
|
|
|
|
// Pass the message into our general fuzz harness for wire messages!
|
|
return harness(data)
|
|
}
|