nip46: fix typo in fetchCustodialBunkers() function name.

This commit is contained in:
fiatjaf
2024-02-14 12:24:47 -03:00
parent 29e5b71473
commit b72b0dc1f0

View File

@@ -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<BunkerProfile[]> {
export async function fetchCustodialBunkers(pool: AbstractSimplePool, relays: string[]): Promise<BunkerProfile[]> {
const events = await pool.querySync(relays, {
kinds: [Handlerinformation],
'#k': [NostrConnect.toString()],