From 82f1ee9fb102e06fcc29d88121ca2e2fc98132a5 Mon Sep 17 00:00:00 2001 From: Florian Sesser Date: Wed, 24 Sep 2025 16:19:14 +0200 Subject: [PATCH] Fix typo in error message An additional 'e' slipped into the error message for blinded messages of the wrong size. --- src/priv_verif_token.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/priv_verif_token.ts b/src/priv_verif_token.ts index a75853d..c7bd586 100644 --- a/src/priv_verif_token.ts +++ b/src/priv_verif_token.ts @@ -85,7 +85,7 @@ export class TokenRequest { public readonly blindedMsg: Uint8Array, ) { if (blindedMsg.length !== VOPRF.Ne) { - throw new Error('blinded message has invalide size'); + throw new Error('blinded message has invalid size'); } this.tokenType = VOPRF.value;