Skip to content

Commit

Permalink
Fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
akshay-ap committed Mar 13, 2024
1 parent 70999e1 commit 5ab7fac
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions modules/passkey/contracts/verifiers/WebAuthnVerifier.sol
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,9 @@ contract WebAuthnVerifier is IWebAuthnVerifier {
let sixBitGroup

// Iterate over challenge in group of 6 bits, for each 6 bits lookup the ENCODING_TABLE, transform it and store it in the result
for {let i := 250} lt(i, 251)
{
for {
let i := 250
} lt(i, 251) {
i := sub(i, 6)
} {
sixBitGroup := and(shr(i, challenge), 0x3F)
Expand Down

0 comments on commit 5ab7fac

Please sign in to comment.