{
    "Function": "stashRewards",
    "File": "contracts/ExtraRewardStashV1.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function stashRewards() external pure returns (bool) {\n        //stashRewards() is also called on deposit\n        //so dont need to try withdrawing here for v1\n        // -> move withdraw() call to processStash() which is only called during reward claiming\n        return true;\n    }"
}