From d41378861258c1a5fc0906ca7eeac12007cb8d78 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Fri, 5 Dec 2025 09:09:10 -0800 Subject: [PATCH] Remove debug logging. --- src/lib/crypto/secp256k1.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/crypto/secp256k1.ts b/src/lib/crypto/secp256k1.ts index 7d9198c..8f92f27 100644 --- a/src/lib/crypto/secp256k1.ts +++ b/src/lib/crypto/secp256k1.ts @@ -353,7 +353,6 @@ export class Secp256k1 { return cnd ? n : p } static wNAF (n: bigint): { p: Point; f: Point } { - console.log('mult', n) const comp = this.Gpows || (this.Gpows = this.precompute()) let p = this.I let f = this.G // f must be G, or could become I in the end -- 2.47.3