Skip to content

Commit

Permalink
relaxed no AA requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
Arvolear committed Dec 5, 2024
1 parent b2d6cb6 commit d72ee69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/passport/dispatchers/PNOAADispatcher.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ contract PNOAADispatcher is IPassportDispatcher, Initializable {
function authenticate(
bytes memory,
bytes memory passportSignature_,
bytes memory passportPublicKey_
bytes memory
) external pure returns (bool) {
return passportSignature_.length == 0 && passportPublicKey_.length == 0;
return passportSignature_.length == 0;
}

/**
Expand Down

0 comments on commit d72ee69

Please sign in to comment.