nip77: fix test function calls.

This commit is contained in:
fiatjaf
2025-11-13 09:21:10 -03:00
parent 98dbe7b9e9
commit dcb9378f09
2 changed files with 4 additions and 4 deletions

View File

@@ -31,10 +31,10 @@ func FuzzWhatever(f *testing.F) {
// prepare the two sides
s1 := vector.New()
l1 := make([]nostr.ID, 0, 500)
neg1 := negentropy.New(s1, int(frameSizeLimit))
neg1 := negentropy.New(s1, int(frameSizeLimit), true, true)
s2 := vector.New()
l2 := make([]nostr.ID, 0, 500)
neg2 := negentropy.New(s2, int(frameSizeLimit))
neg2 := negentropy.New(s2, int(frameSizeLimit), false, false)
start := 0
for s := 0; s < int(sectors); s++ {