Skip to content

Commit

Permalink
πŸ“š: comments for submit
Browse files Browse the repository at this point in the history
  • Loading branch information
folkyatina committed Aug 15, 2023
1 parent 74d63ff commit 4b5cebb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contracts/0.4.24/Lido.sol
Original file line number Diff line number Diff line change
Expand Up @@ -444,10 +444,10 @@ contract Lido is Versioned, StETHPermit, AragonApp {
}

/**
* @notice Send funds to the pool
* @dev Users are able to submit their funds by transacting to the fallback function.
* @notice Send funds to the pool and mints `StETH` tokens to `msg.sender` address
* @dev Users are able to submit their funds by sending ether to the contract address.
* Unlike vanilla Ethereum Deposit contract, accepting only 32-Ether transactions, Lido
* accepts payments of any size. Submitted Ethers are stored in Buffer until someone calls
* accepts payments of any size. Submitted ether are stored in the buffer until someone calls
* deposit() and pushes them to the Ethereum Deposit contract.
*/
// solhint-disable-next-line no-complex-fallback
Expand All @@ -458,7 +458,7 @@ contract Lido is Versioned, StETHPermit, AragonApp {
}

/**
* @notice Send funds to the pool with optional _referral parameter
* @notice Send funds to the pool with the optional `_referral` parameter and mints `StETH` tokens to `msg.sender` address
* @dev This function is alternative way to submit funds. Supports optional referral address.
* @return Amount of StETH shares generated
*/
Expand Down

0 comments on commit 4b5cebb

Please sign in to comment.