Skip to content

Commit 646b413

Browse files
committed
remove: deprecated verifyBatchInclusion function
1 parent f0d9115 commit 646b413

File tree

2 files changed

+1
-23
lines changed

2 files changed

+1
-23
lines changed

contracts/scripts/anvil/state/alignedlayer-deployed-anvil-state.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

contracts/src/core/AlignedLayerServiceManager.sol

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -298,28 +298,6 @@ contract AlignedLayerServiceManager is
298298
);
299299
}
300300

301-
// Old function signature for backwards compatibility
302-
function verifyBatchInclusion(
303-
bytes32 proofCommitment,
304-
bytes32 pubInputCommitment,
305-
bytes32 provingSystemAuxDataCommitment,
306-
bytes20 proofGeneratorAddr,
307-
bytes32 batchMerkleRoot,
308-
bytes memory merkleProof,
309-
uint256 verificationDataBatchIndex
310-
) external view onlyWhenNotPaused(2) returns (bool) {
311-
return this.verifyBatchInclusion(
312-
proofCommitment,
313-
pubInputCommitment,
314-
provingSystemAuxDataCommitment,
315-
proofGeneratorAddr,
316-
batchMerkleRoot,
317-
merkleProof,
318-
verificationDataBatchIndex,
319-
address(0)
320-
);
321-
}
322-
323301
function setAggregator(address _alignedAggregator) public onlyOwner {
324302
alignedAggregator = _alignedAggregator;
325303
}

0 commit comments

Comments
 (0)