File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ contract AirdropERC1155 is
147147 /// @notice Returns all pending airdrop payments.
148148 function getAllAirdropPaymentsPending () external view returns (AirdropContent[] memory contents ) {
149149 uint256 endCount = payeeCount;
150- uint256 startCount = payeeCount ;
150+ uint256 startCount = processedCount ;
151151 contents = new AirdropContent [](endCount - startCount);
152152
153153 uint256 idx;
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ contract AirdropERC20 is
131131 /// @notice Returns all pending airdrop payments.
132132 function getAllAirdropPaymentsPending () external view returns (AirdropContent[] memory contents ) {
133133 uint256 endCount = payeeCount;
134- uint256 startCount = payeeCount ;
134+ uint256 startCount = processedCount ;
135135 contents = new AirdropContent [](endCount - startCount);
136136
137137 uint256 idx;
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ contract AirdropERC721 is
118118 /// @notice Returns all pending airdrop payments.
119119 function getAllAirdropPaymentsPending () external view returns (AirdropContent[] memory contents ) {
120120 uint256 endCount = payeeCount;
121- uint256 startCount = payeeCount ;
121+ uint256 startCount = processedCount ;
122122 contents = new AirdropContent [](endCount - startCount);
123123
124124 uint256 idx;
You can’t perform that action at this time.
0 commit comments