{
    "Function": "_calcRedemptionFee",
    "File": "contracts/src/CollateralRegistry.sol",
    "Parent Contracts": [
        "contracts/src/Interfaces/ICollateralRegistry.sol",
        "contracts/src/Dependencies/Owned.sol",
        "contracts/src/Interfaces/IOwned.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _calcRedemptionFee(uint256 _redemptionRate, uint256 _amount) internal pure returns (uint256) {\n        uint256 redemptionFee = (_redemptionRate * _amount) / DECIMAL_PRECISION;\n        return redemptionFee;\n    }"
}