{
    "Function": "scrubStrategistTrade",
    "File": "contracts/rubiconPools/BathPair.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "handleStratOrderAtID",
        "onlyApprovedStrategist",
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function scrubStrategistTrade(uint256 id)\n        public\n        onlyApprovedStrategist(msg.sender)\n    {\n        require(\n            msg.sender == strategistTrades[id].strategist,\n            \"you are not the strategist that made this order\"\n        );\n        handleStratOrderAtID(id);\n    }"
}