From c854d6982d5cadc94c1fa1ead1676451ae1a00f3 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Mon, 24 Nov 2025 00:53:20 -0800 Subject: [PATCH] Typo. --- src/lib/crypto/secp256k1.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/crypto/secp256k1.ts b/src/lib/crypto/secp256k1.ts index 8e615f9..e856673 100644 --- a/src/lib/crypto/secp256k1.ts +++ b/src/lib/crypto/secp256k1.ts @@ -579,7 +579,7 @@ export class Secp256k1 { return this.u8n(await s.sign(name, k, message)) }, hmacSha256: undefined as undefined | ((key: Bytes, message: Bytes) => Bytes), - sha256Async: async (msg: Bytes): Promise => this.u8n(await sthis.ubtle().digest(this._sha, msg)), + sha256Async: async (msg: Bytes): Promise => this.u8n(await this.subtle().digest(this._sha, msg)), sha256: undefined as undefined | ((message: Bytes) => Bytes), } -- 2.47.3