Skip to content

Commit

Permalink
feat: Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
1marcghannam committed Mar 28, 2024
1 parent 610f3e9 commit 71dfc20
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions contracts/airdrop/MerkleDistributor.sol
Original file line number Diff line number Diff line change
Expand Up @@ -274,9 +274,11 @@ contract MerkleDistributor is Ownable {
* @param _user Address of the user
* @return distributionInfos Array of structs containing each distribution's claimed amount, token address, and IPFS hash
*/
function getUserClaimedDistributions(
address _user
) external view returns (ClaimedDistributionInfo[] memory distributionInfos) {
function getUserClaimedDistributions(address _user)
external
view
returns (ClaimedDistributionInfo[] memory distributionInfos)
{
uint256 tokenCount = tokens.length;
distributionInfos = new ClaimedDistributionInfo[](tokenCount);

Expand Down

0 comments on commit 71dfc20

Please sign in to comment.