From: Chris Duncan Date: Sun, 30 Nov 2025 08:45:22 +0000 (-0800) Subject: Remove debugging. X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=b90420f907f243e99470aa3bae0f4920e4f91573;p=libnemo.git Remove debugging. --- 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 }) }