Skip to content

Commit 1bc8b55

Browse files
committedMay 6, 2023
Removed superfluous logging.
1 parent 96d5e7b commit 1bc8b55

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed
 

‎src.ts/crypto/signing-key.ts

-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ export class SigningKey {
106106
*/
107107
computeSharedSecret(other: BytesLike): string {
108108
const pubKey = SigningKey.computePublicKey(other);
109-
console.log(pubKey);
110109
return hexlify(secp256k1.getSharedSecret(getBytesCopy(this.#privateKey), getBytes(pubKey)));
111110
}
112111

0 commit comments

Comments
 (0)
Please sign in to comment.