Skip to content

Commit

Permalink
Fixed compiler issue
Browse files Browse the repository at this point in the history
  • Loading branch information
asselstine committed Apr 8, 2024
1 parent 5879821 commit 1238ec3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Claimer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ contract Claimer {
function _countClaims(
address[] calldata _winners,
uint32[][] calldata _prizeIndices
) internal view returns (uint256) {
) internal pure returns (uint256) {
uint256 claimCount;
uint256 length = _winners.length;
for (uint256 i = 0; i < length; i++) {
Expand Down

0 comments on commit 1238ec3

Please sign in to comment.