{
    "Function": "_hashDripsHistory",
    "File": "src/Drips.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "abi.encode()",
        "keccak256(bytes)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _hashDripsHistory(\n        bytes32 oldDripsHistoryHash,\n        bytes32 dripsHash,\n        uint32 updateTime,\n        uint32 maxEnd\n    ) internal pure returns (bytes32 dripsHistoryHash) {\n        return keccak256(abi.encode(oldDripsHistoryHash, dripsHash, updateTime, maxEnd));\n    }"
}