]> zoso.dev Git - libnemo.git/commitdiff
Fix typo in worker target function name.
authorChris Duncan <chris@zoso.dev>
Mon, 16 Dec 2024 19:30:00 +0000 (11:30 -0800)
committerChris Duncan <chris@zoso.dev>
Mon, 16 Dec 2024 19:30:00 +0000 (11:30 -0800)
src/lib/wallet.ts

index b3286381c919d8768fd647e65587a6a568101487..1246ff5d4d8d74dd8682f7a487a8e917c8664232 100644 (file)
@@ -421,7 +421,7 @@ export class Bip44Wallet extends Wallet {
        async ckd (indexes: number[]): Promise<KeyPair[]> {\r
                const data: any = []\r
                indexes.forEach(i => data.push({ seed: this.seed, index: i }))\r
-               const privateKeys: KeyPair[] = await Pool.work('bip44-cdk', data)\r
+               const privateKeys: KeyPair[] = await Pool.work('bip44-ckd', data)\r
                return privateKeys\r
        }\r
 }\r