{
    "Function": "addGate",
    "File": "contracts/FixedPricePassThruGate.sol",
    "Parent Contracts": [
        "interfaces/IPriceGate.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function addGate(uint _ethCost, address _beneficiary) external {\n        // prefix operator increments then evaluates, first gate is at index 1\n        Gate storage gate = gates[++numGates];\n        gate.ethCost = _ethCost;\n        gate.beneficiary = _beneficiary;\n    }"
}