Skip to content

Commit

Permalink
Updated submodule protocol/lib/forge-std
Browse files Browse the repository at this point in the history
  • Loading branch information
Brean0 committed Dec 14, 2023
1 parent 017a1b7 commit a9fe4cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ contract SeasonGettersFacet {
* @param well
*/
function getGaugePointsPerBdvForWell(address well) public view returns (uint256) {
if(LibWell.isWell(well)) {
if (LibWell.isWell(well)) {
uint256 wellGaugePoints = s.ss[well].gaugePoints;
uint256 wellDepositedBdv = s.siloBalances[well].depositedBdv;
return wellGaugePoints.mul(LibGauge.BDV_PRECISION).div(wellDepositedBdv);
Expand Down

0 comments on commit a9fe4cc

Please sign in to comment.