Skip to content

Commit 78ddbe2

Browse files
committed
fix: undo verify example changes
1 parent 7b1753e commit 78ddbe2

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

examples/verify/src/VerifyBatchInclusionCaller.sol

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,18 @@ contract VerifyBatchInclusionCaller {
1515
bytes20 proofGeneratorAddr,
1616
bytes32 batchMerkleRoot,
1717
bytes memory merkleProof,
18-
uint256 verificationDataBatchIndex,
19-
address senderAddress
18+
uint256 verificationDataBatchIndex
2019
) external view returns (bool) {
2120
(bool callWasSuccessfull, bytes memory proofIsIncluded) = targetContract.staticcall(
2221
abi.encodeWithSignature(
23-
"verifyBatchInclusion(bytes32,bytes32,bytes32,bytes20,bytes32,bytes,uint256,address)",
22+
"verifyBatchInclusion(bytes32,bytes32,bytes32,bytes20,bytes32,bytes,uint256)",
2423
proofCommitment,
2524
pubInputCommitment,
2625
provingSystemAuxDataCommitment,
2726
proofGeneratorAddr,
2827
batchMerkleRoot,
2928
merkleProof,
30-
verificationDataBatchIndex,
31-
senderAddress
29+
verificationDataBatchIndex
3230
)
3331
);
3432

0 commit comments

Comments
 (0)