eventstore: up limit to 10 on ReplaceEvent()
This commit is contained in:
@@ -11,7 +11,7 @@ import (
|
|||||||
|
|
||||||
func (b *BoltBackend) ReplaceEvent(evt nostr.Event) error {
|
func (b *BoltBackend) ReplaceEvent(evt nostr.Event) error {
|
||||||
return b.DB.Update(func(txn *bbolt.Tx) 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() {
|
if evt.Kind.IsAddressable() {
|
||||||
// when addressable, add the "d" tag to the filter
|
// when addressable, add the "d" tag to the filter
|
||||||
filter.Tags = nostr.TagMap{"d": []string{evt.Tags.GetD()}}
|
filter.Tags = nostr.TagMap{"d": []string{evt.Tags.GetD()}}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ import (
|
|||||||
|
|
||||||
func (b *LMDBBackend) ReplaceEvent(evt nostr.Event) error {
|
func (b *LMDBBackend) ReplaceEvent(evt nostr.Event) error {
|
||||||
return b.lmdbEnv.Update(func(txn *lmdb.Txn) error {
|
return b.lmdbEnv.Update(func(txn *lmdb.Txn) 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() {
|
if evt.Kind.IsAddressable() {
|
||||||
// when addressable, add the "d" tag to the filter
|
// when addressable, add the "d" tag to the filter
|
||||||
filter.Tags = nostr.TagMap{"d": []string{evt.Tags.GetD()}}
|
filter.Tags = nostr.TagMap{"d": []string{evt.Tags.GetD()}}
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ func (il *IndexingLayer) ReplaceEvent(evt nostr.Event) error {
|
|||||||
runtime.LockOSThread()
|
runtime.LockOSThread()
|
||||||
defer runtime.UnlockOSThread()
|
defer runtime.UnlockOSThread()
|
||||||
|
|
||||||
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() {
|
if evt.Kind.IsAddressable() {
|
||||||
// when addressable, add the "d" tag to the filter
|
// when addressable, add the "d" tag to the filter
|
||||||
filter.Tags = nostr.TagMap{"d": []string{evt.Tags.GetD()}}
|
filter.Tags = nostr.TagMap{"d": []string{evt.Tags.GetD()}}
|
||||||
|
|||||||
Reference in New Issue
Block a user