From 27d676900924de0d389098b824b6dad1775bbf17 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Fri, 29 Mar 2024 18:24:44 -0300 Subject: [PATCH] format last commit. --- policies/events.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/policies/events.go b/policies/events.go index a8d985f..600d31e 100644 --- a/policies/events.go +++ b/policies/events.go @@ -1,8 +1,8 @@ package policies import ( - "fmt" "context" + "fmt" "slices" "github.com/nbd-wtf/go-nostr" @@ -84,15 +84,15 @@ func RestrictToSpecifiedKinds(kinds ...uint16) func(context.Context, *nostr.Even return true, fmt.Sprintf("event kind not allowed (it should be higher than %d)", min) } - // Sort the kinds in increasing order - slices.Sort(kinds) + // Sort the kinds in increasing order + slices.Sort(kinds) // hopefully this map of uint16s is very fast if _, allowed := slices.BinarySearch(kinds, uint16(event.Kind)); allowed { return false, "" } - allowedKindsStringFormatted := fmt.Sprintf("%d\n", kinds) + allowedKindsStringFormatted := fmt.Sprintf("%d\n", kinds) return true, fmt.Sprintf("Received event kind %d not allowed, only allowed are: %s", event.Kind, allowedKindsStringFormatted) } }