{
    "Function": "tipMiner",
    "File": "contracts/Identity.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)",
        "executeCall"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function tipMiner(uint amount)\n\t\texternal\n\t{\n\t\trequire(msg.sender == address(this), 'ONLY_IDENTITY_CAN_CALL');\n\t\t// See https://docs.flashbots.net/flashbots-auction/searchers/advanced/coinbase-payment/#managing-payments-to-coinbaseaddress-when-it-is-a-contract\n\t\t// generally this contract is reentrancy proof cause of the nonce\n\t\texecuteCall(block.coinbase, amount, new bytes(0));\n\t}"
}