Skip to content

Commit 9cc622a

Browse files
add return value name in interface for estimateTCO2RedemptionAmount
Co-Authored-By: Michalis Kargakis <kargakis@protonmail.com>
1 parent af5cafb commit 9cc622a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/interfaces/IFeeCalculator.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ interface IFeeCalculator {
4040
/// @param pool The address of the pool.
4141
/// @param tco2 The address of the TCO2 token.
4242
/// @param poolAmount the pool token amount to be redeemed.
43-
/// @return estimated TCO2 token redemption amount for a give pool token redemption amount.
43+
/// @return estimatedTCO2Amount estimated TCO2 token redemption amount for a give pool token redemption amount.
4444
function estimateTCO2RedemptionAmount(address pool, address tco2, uint256 poolAmount)
4545
external
4646
view
47-
returns (uint256);
47+
returns (uint256 estimatedTCO2Amount);
4848
}

0 commit comments

Comments
 (0)