Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into chore/upgrade-openz…
Browse files Browse the repository at this point in the history
…eppelin-contracts
  • Loading branch information
Andriian Chestnykh committed Jan 26, 2024
2 parents e21964a + 5f236e4 commit b08c19b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions contracts/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@iden3/contracts",
"description": "Smart Contract library for Solidity",
"version": "1.4.3",
"version": "1.4.5",
"files": [
"**/*.sol",
"/build/contracts/*.json",
Expand Down
6 changes: 3 additions & 3 deletions contracts/validators/CredentialAtomicQueryV3Validator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ contract CredentialAtomicQueryV3Validator is CredentialAtomicQueryValidator {
/**
* @dev Version of contract
*/
string public constant VERSION = "1.0.0-beta.0";
string public constant VERSION = "1.0.1-beta.0";

string internal constant CIRCUIT_ID = "credentialAtomicQueryV3OnChain-beta.0";

Expand Down Expand Up @@ -174,8 +174,8 @@ contract CredentialAtomicQueryV3Validator is CredentialAtomicQueryValidator {

function _checkProofType(uint256 queryProofType, uint256 pubSignalProofType) internal pure {
require(
pubSignalProofType == 0 || queryProofType == pubSignalProofType,
"Proof type should match the query"
queryProofType == 0 || queryProofType == pubSignalProofType,
"Proof type should match the requested one in query"
);
}

Expand Down

0 comments on commit b08c19b

Please sign in to comment.