From 1bc8b55d502a95c4ae58352bdcfce9e5f9ea72d3 Mon Sep 17 00:00:00 2001 From: Richard Moore Date: Sat, 6 May 2023 15:15:07 +0900 Subject: [PATCH] Removed superfluous logging. --- src.ts/crypto/signing-key.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src.ts/crypto/signing-key.ts b/src.ts/crypto/signing-key.ts index eb3b125dfb..d92f5e9c7d 100644 --- a/src.ts/crypto/signing-key.ts +++ b/src.ts/crypto/signing-key.ts @@ -106,7 +106,6 @@ export class SigningKey { */ computeSharedSecret(other: BytesLike): string { const pubKey = SigningKey.computePublicKey(other); - console.log(pubKey); return hexlify(secp256k1.getSharedSecret(getBytesCopy(this.#privateKey), getBytes(pubKey))); }