Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
danielailie committed Nov 8, 2024
1 parent 6623ad1 commit 59d91af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,8 @@ export class TokenComputer {
}

// Otherwise, decode the last part as an unsigned number
const hecNonce = parts[parts.length - 1];
return decodeUnsignedNumber(Buffer.from(hecNonce, "hex"));
const hexNonce = parts[parts.length - 1];
return decodeUnsignedNumber(Buffer.from(hexNonce, "hex"));
}

extractIdentifierFromExtendedIdentifier(identifier: string): string {
Expand Down

0 comments on commit 59d91af

Please sign in to comment.