Skip to content

Commit 3a2fa44

Browse files
committed
fix: gas diff test
1 parent 214b579 commit 3a2fa44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/src/core/BatcherPaymentService.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +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);
25+
event TaskCreated(bytes32 indexed batchMerkleRoot, uint256 feePerProof, uint256 amountOfProofs);
2626

2727
// ERRORS
2828
error OnlyBatcherAllowed(address caller); // 152bc288
@@ -132,7 +132,7 @@ contract BatcherPaymentService is
132132
respondToTaskFeeLimit
133133
);
134134

135-
emit TaskCreated(batchMerkleRoot, feePerProof);
135+
emit TaskCreated(batchMerkleRoot, feePerProof, proofSubmittersQty);
136136

137137
payable(batcherWallet).transfer(
138138
(feePerProof * proofSubmittersQty) - feeForAggregator

0 commit comments

Comments
 (0)