{
    "Function": "addFee",
    "File": "contracts/Pool.sol",
    "Parent Contracts": [
        "contracts/interfaces/iBEP20.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function addFee(uint _rev) internal {\n        uint _n = revenueArray.length; // 2\n        for (uint i = _n - 1; i > 0; i--) {\n            revenueArray[i] = revenueArray[i - 1];\n        }\n        revenueArray[0] = _rev;\n    }"
}