eventstore: up limit to 10 on ReplaceEvent()

This commit is contained in:
fiatjaf
2025-08-06 00:28:21 -03:00
parent 92f6f75388
commit 24b10ba2a5
3 changed files with 3 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ import (
func (b *BoltBackend) ReplaceEvent(evt nostr.Event) error {
return b.DB.Update(func(txn *bbolt.Tx) error {
filter := nostr.Filter{Limit: 1, Kinds: []nostr.Kind{evt.Kind}, Authors: []nostr.PubKey{evt.PubKey}}
filter := nostr.Filter{Kinds: []nostr.Kind{evt.Kind}, Authors: []nostr.PubKey{evt.PubKey}}
if evt.Kind.IsAddressable() {
// when addressable, add the "d" tag to the filter
filter.Tags = nostr.TagMap{"d": []string{evt.Tags.GetD()}}