Skip to content

Commit

Permalink
Merge branch 'modify-allocation-functions' of github.com:Giveth/givpo…
Browse files Browse the repository at this point in the history
…wer into modify-allocation-functions
  • Loading branch information
divine-comedian committed Feb 19, 2024
2 parents ef0e40c + 4ada5ab commit e1be749
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions contracts/TokenDistro.sol
Original file line number Diff line number Diff line change
Expand Up @@ -339,4 +339,11 @@ contract TokenDistro is Initializable, IDistro, AccessControlEnumerableUpgradeab

emit DurationChanged(newDuration);
}

event PraiseRewardPaid(address distributor);

function sendPraiseRewards(address[] memory recipients, uint256[] memory amounts) external {
_allocateMany(recipients, amounts);
emit PraiseRewardPaid(msg.sender);
}
}

0 comments on commit e1be749

Please sign in to comment.