{
    "Function": "execScheduled",
    "File": "contracts/wallet/QuickAccManager.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "Identity",
        "Identity"
    ],
    "Internal Calls": [
        "abi.encode()",
        "keccak256(bytes)",
        "require(bool,string)",
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function execScheduled(Identity identity, bytes32 accHash, uint nonce, Identity.Transaction[] calldata txns) external {\n\t\trequire(identity.privileges(address(this)) == accHash, 'WRONG_ACC_OR_NO_PRIV');\n\n\t\tbytes32 hash = keccak256(abi.encode(address(this), block.chainid, accHash, nonce, txns, false));\n\t\trequire(scheduled[hash] != 0 && block.timestamp >= scheduled[hash], 'NOT_TIME');\n\t\tdelete scheduled[hash];\n\t\tidentity.executeBySender(txns);\n\n\t\temit LogExecScheduled(hash, accHash, block.timestamp);\n\t}"
}