{
    "Function": "revenueDetails",
    "File": "contracts/Router.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function revenueDetails(uint _fees, address _pool) internal {\n        if(lastMonth == 0){\n            lastMonth = block.timestamp;\n        }\n        if(block.timestamp <= lastMonth + 2592000){ // 30 days\n            mapAddress_30DayDividends[_pool] = mapAddress_30DayDividends[_pool] + _fees;\n        } else {\n            lastMonth = block.timestamp;\n            mapAddress_Past30DayPoolDividends[_pool] = mapAddress_30DayDividends[_pool];\n            mapAddress_30DayDividends[_pool] = 0;\n            mapAddress_30DayDividends[_pool] = mapAddress_30DayDividends[_pool] + _fees;\n        }\n    }"
}