{
    "Function": "getsDividend",
    "File": "contracts/Router.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "iPOOLFACTORY",
        "iDAO"
    ],
    "Internal Calls": [
        "addDividend",
        "addTradeFee",
        "_DAO"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getsDividend(address _pool, uint fee) internal {\n        if(iPOOLFACTORY(_DAO().POOLFACTORY()).isCuratedPool(_pool) == true){\n            addTradeFee(fee); // Add fee to array for avgFee calcs etc\n            addDividend(_pool, fee); // Check and tsf dividend to pool\n        }\n    }"
}