From 33173d2e12ef790fbecc3f9803255d9b253b467e Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Sun, 30 Nov 2025 22:17:24 -0800 Subject: [PATCH] Remove point check since its no longer a class and rely instead on typings. --- src/lib/crypto/secp256k1.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/crypto/secp256k1.ts b/src/lib/crypto/secp256k1.ts index 0c48cbc..ad71f0c 100644 --- a/src/lib/crypto/secp256k1.ts +++ b/src/lib/crypto/secp256k1.ts @@ -244,7 +244,6 @@ export class Secp256k1 { return fn } static hash = (msg: Bytes): Bytes => this.callHash('sha256')(msg) - static apoint = (p: unknown) => (p instanceof this.Point ? p : this.err('Point expected')) // ## End of Helpers // ----------------- -- 2.47.3