Sha256: 1a286b68c2ffc5b6a15833c1ae07c4a64e5e0dee55bcdfc172ca354b50782fb8
Contents?: true
Size: 787 Bytes
Versions: 6
Compression:
Stored size: 787 Bytes
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # enum OperationResultCode # { # opINNER = 0, // inner object result is valid # # opBAD_AUTH = -1, // too few valid signatures / wrong network # opNO_ACCOUNT = -2, // source account was not found # opNOT_SUPPORTED = -3 // operation not supported at this time # }; # # =========================================================================== module Stellar class OperationResultCode < XDR::Enum member :op_inner, 0 member :op_bad_auth, -1 member :op_no_account, -2 member :op_not_supported, -3 seal end end
Version data entries
6 entries across 6 versions & 1 rubygems