{
    "Function": "getPastVotes",
    "File": "governance/contracts/wveOLAS.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "IVEOLAS"
    ],
    "Internal Calls": [
        "getUserPoint"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getPastVotes(address account, uint256 blockNumber) external view returns (uint256 balance) {\n        // Get the zero account point\n        PointVoting memory uPoint = getUserPoint(account, 0);\n        // Check that the point exists and the zero point block number is not smaller than the specified blockNumber\n        if (uPoint.blockNumber > 0 && blockNumber >= uPoint.blockNumber) {\n            balance = IVEOLAS(ve).getPastVotes(account, blockNumber);\n        }\n    }"
}