Skip to content

Commit b14ad5c

Browse files
authored
Merge pull request #106 from hyperledger-labs/change-detector
2 parents 2860844 + 4b22c22 commit b14ad5c

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/e2e.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,13 @@ jobs:
6060
run: |
6161
npm install
6262
npm run gen
63+
if [[ -n $(git status --porcelain) ]]; then
64+
echo "Error: 'npm run gen' caused changes in the repository, please run the command locally to commit in all changes."
65+
git status --porcelain
66+
echo "Detailed changes:"
67+
git diff
68+
exit 1
69+
fi
6370
6471
- name: Set up Go
6572
uses: actions/setup-go@v5

solidity/contracts/lib/verifier_check_hashes_value.sol

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,6 @@ contract Groth16Verifier_CheckHashesValue {
171171

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

174-
checkField(calldataload(add(_pubSignals, 96)))
175-
176174

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

0 commit comments

Comments
 (0)