Skip to content

Commit

Permalink
chore: add natspec
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyonline committed Sep 25, 2024
1 parent 9895e89 commit 6e73ce7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/ynEIGEN/RedemptionAssetsVault.sol
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ contract RedemptionAssetsVault is IRedemptionAssetsVault, Initializable, AccessC
* @param to The recipient address of the assets.
* @param amount The amount of assets to transfer.
* @dev Requires the caller to be the redeemer and the contract to not be paused.
* @dev Iterates over the supported assets, transferring each asset's balance to the user until fully depleted.
*/
function transferRedemptionAssets(address to, uint256 amount, bytes calldata /* data */) public onlyRedeemer whenNotPaused nonReentrant {
uint256 balance = availableRedemptionAssets();
Expand Down

0 comments on commit 6e73ce7

Please sign in to comment.