From 1db4da7ed327ae5ee1609f10fc94619b9a30ee20 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Thu, 29 Aug 2024 07:57:05 -0300 Subject: [PATCH] nip29: get rid of useless constant. --- nip29/nip29.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/nip29/nip29.go b/nip29/nip29.go index 6a8a2a1..95283b9 100644 --- a/nip29/nip29.go +++ b/nip29/nip29.go @@ -44,8 +44,6 @@ var MetadataEventKinds = KindRange{ nostr.KindSimpleGroupMembers, } -const JoinRequestKind = nostr.KindSimpleGroupJoinRequest - func (kr KindRange) Includes(kind int) bool { _, ok := slices.BinarySearch(kr, kind) return ok