removed events and pubkey capacities,

favoring single channel capacity variable
This commit is contained in:
pippellia-btc
2025-09-19 15:56:37 +02:00
parent 1de9a84ba3
commit 758a37750b
4 changed files with 11 additions and 14 deletions

View File

@@ -47,8 +47,8 @@ func main() {
panic(err)
}
builderQueue := make(chan *nostr.Event, config.EventsCapacity)
fetcherQueue := make(chan string, config.PubkeysCapacity)
builderQueue := make(chan *nostr.Event, config.ChannelCapacity)
fetcherQueue := make(chan string, config.ChannelCapacity)
nodes, err := db.NodeCount(ctx)
if err != nil {