Skip to content

Commit

Permalink
docs: comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeday committed Jan 17, 2025
1 parent 90f64d4 commit 5a907fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/0.8.25/vaults/Dashboard.sol
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ contract Dashboard is AccessControlEnumerable {
}

/**
* @notice Mints wstETH tokens backed by the vault to a recipient. Approvals for the passed amounts should be done before.
* @notice Mints wstETH tokens backed by the vault to a recipient.
* @param _recipient Address of the recipient
* @param _amountOfWstETH Amount of tokens to mint
*/
Expand All @@ -320,15 +320,15 @@ contract Dashboard is AccessControlEnumerable {
}

/**
* @notice Burns stETH shares from the sender backed by the vault
* @notice Burns stETH shares from the sender backed by the vault. Approvals for the passed amounts should be done before.
* @param _amountOfShares Amount of stETH shares to burn
*/
function burnShares(uint256 _amountOfShares) external virtual onlyRole(DEFAULT_ADMIN_ROLE) {
_burnSharesFrom(msg.sender, _amountOfShares);
}

/**
* @notice Burns stETH shares from the sender backed by the vault
* @notice Burns stETH shares from the sender backed by the vault. Approvals for the passed amounts should be done before.
* @param _amountOfStETH Amount of stETH shares to burn
*/
function burnSteth(uint256 _amountOfStETH) external virtual onlyRole(DEFAULT_ADMIN_ROLE) {
Expand Down

0 comments on commit 5a907fc

Please sign in to comment.