Skip to content

Commit

Permalink
Removed superfluous logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed May 6, 2023
1 parent 96d5e7b commit 1bc8b55
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src.ts/crypto/signing-key.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)));
}

Expand Down

0 comments on commit 1bc8b55

Please sign in to comment.