{
    "Function": "constructor",
    "File": "src/DepositContract.sol",
    "Parent Contracts": [
        "src/DepositContract.sol",
        "src/DepositContract.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "abi.encodePacked()",
        "sha256(bytes)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "constructor() public {\n        // Compute hashes in empty sparse Merkle tree\n        for (uint height = 0; height < DEPOSIT_CONTRACT_TREE_DEPTH - 1; height++)\n            zero_hashes[height + 1] = sha256(abi.encodePacked(zero_hashes[height], zero_hashes[height]));\n    }"
}