From e34ce6aa94ac0c2cda507072ce72a7029e605d9f Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Thu, 30 Oct 2025 09:41:37 -0300 Subject: [PATCH] khatru: fix an argument name. --- khatru/policies/multi.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/khatru/policies/multi.go b/khatru/policies/multi.go index 78278a6..fb76d21 100644 --- a/khatru/policies/multi.go +++ b/khatru/policies/multi.go @@ -33,7 +33,7 @@ func SeqStore(funcs ...func(ctx context.Context, evt nostr.Event) error) func(co } func SeqRequest( - funcs ...func(ctx context.Context, evt nostr.Filter) (bool, string), + funcs ...func(ctx context.Context, filter nostr.Filter) (bool, string), ) func(context.Context, nostr.Filter) (reject bool, reason string) { return func(ctx context.Context, evt nostr.Filter) (reject bool, reason string) { for _, fn := range funcs {