Removed superfluous logging.

This commit is contained in:
Richard Moore 2023-05-06 15:15:07 +09:00
parent 96d5e7b206
commit 1bc8b55d50

View File

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