{
    "Function": "commitTransferOwnership",
    "File": "contracts/Ownership.sol",
    "Parent Contracts": [
        "contracts/interfaces/IOwnership.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "onlyOwner"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function commitTransferOwnership(address newOwner)\n        external\n        override\n        onlyOwner\n    {\n        /***\n         *@notice Transfer ownership of GaugeController to `newOwner`\n         *@param newOwner Address to have ownership transferred to\n         */\n        _futureOwner = newOwner;\n        emit CommitNewOwnership(_futureOwner);\n    }"
}