diff --git a/discovery/validation.go b/discovery/validation.go index c8d78d4f..72e96025 100644 --- a/discovery/validation.go +++ b/discovery/validation.go @@ -62,7 +62,7 @@ func (d *AuthenticatedGossiper) validateNodeAnn(a *lnwire.NodeAnnouncement) erro // return an error so this node announcement can be rejected. dataHash := chainhash.DoubleHashB(data) if !a.Signature.Verify(dataHash, copyPubKey(a.NodeID)) { - return errors.New("signature on node announcement is invalid!") + return errors.New("signature on node announcement is invalid") } return nil