Source code for genlayer.std._internal.result_codes from enum import IntEnum [docs] class ResultCode(IntEnum): RETURN = 0 ROLLBACK = 1 CONTRACT_ERROR = 2 ERROR = 3 [docs] class StorageType(IntEnum): DEFAULT = 0 LATEST_FINAL = 1 LATEST_NON_FINAL = 2