mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 14:40:30 +01:00
16 lines
363 B
Go
16 lines
363 B
Go
// +build gofuzz
|
|
|
|
package lnwirefuzz
|
|
|
|
import (
|
|
"github.com/lightningnetwork/lnd/lnwire"
|
|
)
|
|
|
|
// Fuzz_revoke_and_ack is used by go-fuzz.
|
|
func Fuzz_revoke_and_ack(data []byte) int {
|
|
// Prefix with MsgRevokeAndAck.
|
|
data = prefixWithMsgType(data, lnwire.MsgRevokeAndAck)
|
|
|
|
// Pass the message into our general fuzz harness for wire messages!
|
|
return harness(data)
|
|
}
|