From b72b0dc1f0271cd305d33be39a36056a25cd9369 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Wed, 14 Feb 2024 12:24:47 -0300 Subject: [PATCH] nip46: fix typo in fetchCustodialBunkers() function name. --- nip46.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nip46.ts b/nip46.ts index 03a0469..1157384 100644 --- a/nip46.ts +++ b/nip46.ts @@ -285,7 +285,7 @@ export async function createAccount( * Fetches info on available providers that announce themselves using NIP-89 events. * @returns A promise that resolves to an array of available bunker objects. */ -export async function fetchCustodialbunkers(pool: AbstractSimplePool, relays: string[]): Promise { +export async function fetchCustodialBunkers(pool: AbstractSimplePool, relays: string[]): Promise { const events = await pool.querySync(relays, { kinds: [Handlerinformation], '#k': [NostrConnect.toString()],