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))); }