Skip to content

Commit

Permalink
Merge pull request #27 from neutral-protocol/redemption-interface-fix
Browse files Browse the repository at this point in the history
Fix amount name in redemption calculator interface
  • Loading branch information
0xmichalis authored Dec 20, 2023
2 parents 04a6063 + 48d9f81 commit fbcbc73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/interfaces/IRedemptionFeeCalculator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ interface IRedemptionFeeCalculator {
/// @notice Calculates the redemption fees for a given amount.
/// @param tco2 The address of the TCO2 token.
/// @param pool The address of the pool.
/// @param depositAmount The amount to be redeemed.
/// @param redemptionAmount The amount to be redeemed.
/// @return recipients The addresses of the fee recipients.
/// @return feesDenominatedInPoolTokens The amount of fees each recipient should receive.
function calculateRedemptionFees(address tco2, address pool, uint256 depositAmount)
function calculateRedemptionFees(address tco2, address pool, uint256 redemptionAmount)
external
returns (address[] memory recipients, uint256[] memory feesDenominatedInPoolTokens);
}

0 comments on commit fbcbc73

Please sign in to comment.