Skip to content

Commit 8d3bd94

Browse files
hacklschorscharmfazh
authored andcommitted
Fix typo in error message
An additional 'e' slipped into the error message for blinded messages of the wrong size.
1 parent 59ba2a5 commit 8d3bd94

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/priv_verif_token.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export class TokenRequest {
8585
public readonly blindedMsg: Uint8Array,
8686
) {
8787
if (blindedMsg.length !== VOPRF.Ne) {
88-
throw new Error('blinded message has invalide size');
88+
throw new Error('blinded message has invalid size');
8989
}
9090

9191
this.tokenType = VOPRF.value;

0 commit comments

Comments
 (0)