{
    "Function": "addRevenue",
    "File": "contracts/Pool.sol",
    "Parent Contracts": [
        "contracts/interfaces/iBEP20.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "addFee"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function addRevenue(uint _totalRev) internal {\n        if(!(revenueArray.length == 2)){\n            revenueArray.push(_totalRev);\n        } else {\n            addFee(_totalRev);\n        }\n    }"
}