fix: remove comment

This commit is contained in:
P. Reis 2025-02-09 11:54:12 -03:00
parent efceee505a
commit cde091132e

View file

@ -539,8 +539,7 @@ export const swapNutzapsToWalletController: AppController = async (c) => {
return c.json({ error: 'You do not have any mints in your nutzap information event.' }, 400);
}
//const nutzapsFilter: NostrFilter = { kinds: [9321], '#p': [pubkey], '#u': mints };
const nutzapsFilter: NostrFilter = { kinds: [9321], '#p': [pubkey] };
const nutzapsFilter: NostrFilter = { kinds: [9321], '#p': [pubkey], '#u': mints }; // TODO: index 'u' tags
const [nutzapHistory] = await store.query([{ kinds: [7376], authors: [pubkey] }], { signal });
if (nutzapHistory) {