Skip to content

Commit

Permalink
Update AZP_FIELDS
Browse files Browse the repository at this point in the history
  • Loading branch information
wshino committed Oct 7, 2024
1 parent 63b1966 commit e71a93f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/contracts/src/interfaces/IJwtGroth16Verifier.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ interface IJwtGroth16Verifier {
uint[2] calldata _pA,
uint[2][2] calldata _pB,
uint[2] calldata _pC,
uint[29] calldata _pubSignals
uint[31] calldata _pubSignals
) external view returns (bool);
}
4 changes: 2 additions & 2 deletions packages/contracts/src/utils/JwtVerifier.sol
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ contract JwtVerifier is OwnableUpgradeable, UUPSUpgradeable {
uint256 public constant ISS_BYTES = 32;
uint256 public constant COMMAND_FIELDS = 20;
uint256 public constant COMMAND_BYTES = 605;
uint256 public constant AZP_FIELDS = 1;
uint256 public constant AZP_BYTES = 14;
uint256 public constant AZP_FIELDS = 3;
uint256 public constant AZP_BYTES = 72;

constructor() {}

Expand Down

0 comments on commit e71a93f

Please sign in to comment.