Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update comments in LibFertilizer #1098

Merged
merged 2 commits into from
Sep 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions protocol/contracts/libraries/LibFertilizer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ library LibFertilizer {
* @dev Adds a new fertilizer to Beanstalk, updates global state,
* the season queue, and returns the corresponding fertilizer id.
* @param season The season the fertilizer is added.
* @param tokenAmountIn The amount of barnRaiseToken being used to purchase Fertilizer.
* @param fertilizerAmount The amount of Fertilizer to add.
* @param minLP The minimum amount of LP to add.
* @return id The id of the Fertilizer.
Expand Down Expand Up @@ -102,8 +103,8 @@ library LibFertilizer {
}

/**
* @dev Any token contributions should already be transferred to the Barn Raise Well to allow for a gas efficient liquidity
* addition through the use of `sync`. See {FertilizerFacet.mintFertilizer} for an example.
* @dev Transfers `tokenAmountIn` of `barnRaiseToken` to the Barn Raise Well, mints and
* adds corresponding Bean liquidity.
*/
function addUnderlying(
uint256 tokenAmountIn,
Expand Down
Loading