{
    "Function": "setProtocolFeeRecipient",
    "File": "contracts/UpsideStaking.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/access/Ownable.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "revert Unauthorised()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setProtocolFeeRecipient(address _newRecipient) external {\n        if (msg.sender != protocolFeeRecipient) revert Unauthorised();\n        emit ProtocolFeeRecipientSet(protocolFeeRecipient, _newRecipient);\n        protocolFeeRecipient = _newRecipient;\n    }"
}