Skip to content

Commit 54cda96

Browse files
committed
Add bytes data parameter to DistributedSoloBatch event
1 parent 414cd97 commit 54cda96

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/05_DistributeSolo.t.sol

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ contract DistributeSolo_Test is Base_Test {
282282
expectedDistributionIds[1] = escrow.distributionCount() + 1;
283283

284284
vm.expectEmit(true, true, true, true);
285-
emit DistributedSoloBatch(0, expectedDistributionIds);
285+
emit DistributedSoloBatch(0, expectedDistributionIds, "");
286286

287287
vm.prank(distributor);
288288
escrow.distributeSolo(distributions, "");
@@ -828,6 +828,7 @@ contract DistributeSolo_Test is Base_Test {
828828

829829
event DistributedSoloBatch(
830830
uint256 indexed distributionBatchId,
831-
uint256[] distributionIds
831+
uint256[] distributionIds,
832+
bytes data
832833
);
833834
}

0 commit comments

Comments
 (0)