Skip to content

Commit

Permalink
Fix sender address usage in batch ID
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielbosio committed Sep 16, 2024
1 parent 5ea15ad commit e50e392
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/src/core/AlignedLayerServiceManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ contract AlignedLayerServiceManager is
) {
batchIdentifierHash = batchMerkleRoot;
} else {
batchIdentifierHash = keccak256(abi.encodePacked(batchMerkleRoot, msg.sender));
batchIdentifierHash = keccak256(abi.encodePacked(batchMerkleRoot, senderAddress));
}

if (batchesState[batchIdentifierHash].taskCreatedBlock == 0) {
Expand Down

0 comments on commit e50e392

Please sign in to comment.