Skip to content

Commit

Permalink
remove console log detritus
Browse files Browse the repository at this point in the history
  • Loading branch information
auroter committed Feb 15, 2025
1 parent 6dd91c8 commit aac63f5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/OffsetProgressiveCurve.sol
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,6 @@ contract OffsetProgressiveCurve is BaseCurve {
/// @dev And the slope ($m$) determines how quickly the price increases
/// @dev TLDR: Each new share costs more than the last, but starting from an offset point on the curve
function currentPrice(uint256 totalShares) public view override returns (uint256 sharePrice) {
console.log("OffsetProgressiveCurve: currentSharePrice is %e", convert(totalShares).add(OFFSET).mul(SLOPE).unwrap());
return convert(totalShares).add(OFFSET).mul(SLOPE).unwrap();
}

Expand Down

0 comments on commit aac63f5

Please sign in to comment.