{
    "Function": "checkAfterExecution",
    "File": "contracts/lib/safe-contracts/contracts/examples/guards/DebugTransactionGuard.sol",
    "Parent Contracts": [
        "contracts/lib/safe-contracts/contracts/base/GuardManager.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function checkAfterExecution(bytes32 txHash, bool success) external override {\n        uint256 nonce = txNonces[txHash];\n        require(nonce != 0, \"Could not get nonce\");\n        txNonces[txHash] = 0;\n        emit GasUsage(msg.sender, txHash, nonce, success);\n    }"
}