Skip to content

Commit

Permalink
add return value name in interface for estimateTCO2RedemptionAmount
Browse files Browse the repository at this point in the history
Co-Authored-By: Michalis Kargakis <kargakis@protonmail.com>
  • Loading branch information
PawelTroka and 0xmichalis committed Jan 30, 2024
1 parent af5cafb commit 9cc622a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/interfaces/IFeeCalculator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ interface IFeeCalculator {
/// @param pool The address of the pool.
/// @param tco2 The address of the TCO2 token.
/// @param poolAmount the pool token amount to be redeemed.
/// @return estimated TCO2 token redemption amount for a give pool token redemption amount.
/// @return estimatedTCO2Amount estimated TCO2 token redemption amount for a give pool token redemption amount.
function estimateTCO2RedemptionAmount(address pool, address tco2, uint256 poolAmount)
external
view
returns (uint256);
returns (uint256 estimatedTCO2Amount);
}

0 comments on commit 9cc622a

Please sign in to comment.