We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af5cafb commit 9cc622aCopy full SHA for 9cc622a
src/interfaces/IFeeCalculator.sol
@@ -40,9 +40,9 @@ interface IFeeCalculator {
40
/// @param pool The address of the pool.
41
/// @param tco2 The address of the TCO2 token.
42
/// @param poolAmount the pool token amount to be redeemed.
43
- /// @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.
44
function estimateTCO2RedemptionAmount(address pool, address tco2, uint256 poolAmount)
45
external
46
view
47
- returns (uint256);
+ returns (uint256 estimatedTCO2Amount);
48
}
0 commit comments