Skip to content

Commit

Permalink
Merge pull request #106 from hyperledger-labs/change-detector
Browse files Browse the repository at this point in the history
  • Loading branch information
Chengxuan authored Dec 3, 2024
2 parents 2860844 + 4b22c22 commit b14ad5c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,13 @@ jobs:
run: |
npm install
npm run gen
if [[ -n $(git status --porcelain) ]]; then
echo "Error: 'npm run gen' caused changes in the repository, please run the command locally to commit in all changes."
git status --porcelain
echo "Detailed changes:"
git diff
exit 1
fi
- name: Set up Go
uses: actions/setup-go@v5
Expand Down
2 changes: 0 additions & 2 deletions solidity/contracts/lib/verifier_check_hashes_value.sol
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,6 @@ contract Groth16Verifier_CheckHashesValue {

checkField(calldataload(add(_pubSignals, 64)))

checkField(calldataload(add(_pubSignals, 96)))


// Validate all evaluations
let isValid := checkPairing(_pA, _pB, _pC, _pubSignals, pMem)
Expand Down

0 comments on commit b14ad5c

Please sign in to comment.