From: Chris Duncan Date: Mon, 16 Dec 2024 19:30:00 +0000 (-0800) Subject: Fix typo in worker target function name. X-Git-Url: https://zoso.dev/?a=commitdiff_plain;h=ed144d2e569016feeed35b8d647260d662ac59e5;p=libnemo.git Fix typo in worker target function name. --- diff --git a/src/lib/wallet.ts b/src/lib/wallet.ts index b328638..1246ff5 100644 --- a/src/lib/wallet.ts +++ b/src/lib/wallet.ts @@ -421,7 +421,7 @@ export class Bip44Wallet extends Wallet { async ckd (indexes: number[]): Promise { const data: any = [] indexes.forEach(i => data.push({ seed: this.seed, index: i })) - const privateKeys: KeyPair[] = await Pool.work('bip44-cdk', data) + const privateKeys: KeyPair[] = await Pool.work('bip44-ckd', data) return privateKeys } }