From b90420f907f243e99470aa3bae0f4920e4f91573 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Sun, 30 Nov 2025 00:45:22 -0800 Subject: [PATCH] Remove debugging. --- src/lib/crypto/bip44.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/lib/crypto/bip44.ts b/src/lib/crypto/bip44.ts index cbb9114..8fb5ea1 100644 --- a/src/lib/crypto/bip44.ts +++ b/src/lib/crypto/bip44.ts @@ -71,9 +71,6 @@ export class Bip44 { } static CKDpriv (curve: Curve, { privateKey, chainCode }: ExtendedKey, index?: number): Promise { - // console.log(index) - // console.log([...(new Uint8Array(privateKey))].map(v => v.toString(16).padStart(2, '0')).join('')) - // console.log([...(new Uint8Array(chainCode))].map(v => v.toString(16).padStart(2, '0')).join('')) if (index === undefined) { return Promise.resolve({ privateKey, chainCode }) } -- 2.47.3