khatru: fix an argument name.

This commit is contained in:
fiatjaf
2025-10-30 09:41:37 -03:00
parent 0aa0038c40
commit e34ce6aa94

View File

@@ -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 {