Skip to content

Commit

Permalink
fix invalid opts check
Browse files Browse the repository at this point in the history
  • Loading branch information
chunningham committed Nov 25, 2024
1 parent 449e6d6 commit 95730e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/siwe/lib/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ export class SiweMessage {
opts,
VerifyOptsKeys
);
if (invalidParams.length > 0) {
if (invalidOpts.length > 0) {
fail({
success: false,
data: this,
Expand Down

0 comments on commit 95730e2

Please sign in to comment.