File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments