Skip to content

Commit 83b3a6f

Browse files
committed
refactor: rename TaskCreatedV2 to TaskCreated
chore: update ABIs in explorer and sdk chore: update anvil state
1 parent 0825d07 commit 83b3a6f

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

batcher/aligned-sdk/abi/BatcherPaymentService.json

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

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/BatcherPaymentService.sol

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ contract BatcherPaymentService is
2222
event FundsWithdrawn(address indexed recipient, uint256 amount);
2323
event BalanceLocked(address indexed user);
2424
event BalanceUnlocked(address indexed user, uint256 unlockBlockTime);
25-
// event TaskCreated(bytes32 indexed batchMerkleRoot, uint256 feePerProof);
26-
event TaskCreatedV2(bytes32 indexed batchMerkleRoot, uint256 feePerProof, uint256 amountOfProofs);
25+
event TaskCreated(bytes32 indexed batchMerkleRoot, uint256 feePerProof, uint256 amountOfProofs);
2726

2827
// ERRORS
2928
error OnlyBatcherAllowed(address caller); // 152bc288
@@ -134,7 +133,7 @@ contract BatcherPaymentService is
134133
);
135134

136135
// emit TaskCreated(batchMerkleRoot, feePerProof);
137-
emit TaskCreatedV2(batchMerkleRoot, feePerProof, proofSubmittersQty);
136+
emit TaskCreated(batchMerkleRoot, feePerProof, proofSubmittersQty);
138137

139138
payable(batcherWallet).transfer(
140139
(feePerProof * proofSubmittersQty) - feeForAggregator

explorer/lib/abi/BatcherPaymentService.json

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

0 commit comments

Comments
 (0)