vyper.exceptions.UndeclaredDefinition: 'MAX_TICKS' has not been declared.
contract "contracts/amm_original.vy:84", line 84:19
83 struct UserTicks:
---> 84 ticks: uint256[MAX_TICKS/2]
---------------------------^
85
While the problem is that / should be replaced by //
What's your issue about?
fails with the following error:
While the problem is that
/
should be replaced by//