diff --git a/src/utils/outbox.ts b/src/utils/outbox.ts index 72b83388..e5d7029c 100644 --- a/src/utils/outbox.ts +++ b/src/utils/outbox.ts @@ -2,11 +2,11 @@ import { NStore } from '@nostrify/nostrify'; import { Conf } from '@/config.ts'; -export async function getRelays(store: NStore, pubkey: string): Promise> { +export async function getRelays(store: NStore, _pubkey: string): Promise> { const relays = new Set<`wss://${string}`>(); const events = await store.query([ - { kinds: [10002], authors: [pubkey, Conf.pubkey], limit: 2 }, + { kinds: [10002], authors: [/*pubkey, */ Conf.pubkey], limit: 2 }, ]); for (const event of events) {