_refundHeldFees
Contract: JBPayoutRedemptionPaymentTerminal
- Step by step
- Code
- Events
- Bug bounty
Refund fees based on the specified amount.
Definition
function _refundHeldFees(uint256 _projectId, uint256 _amount)
private
returns (uint256 refundedFees) { ... }
- Arguments:
_projectId
is the project for which fees are being refunded._amount
is the amount to base the refund on, as a fixed point number with the same amount of decimals as this terminal.
- The function is private to this contract.
- The function doesn't return anything.