Sha256: 38fae3e350d5a7bab95b6cd249ce709cead300ee97163a2ed1c615905d738137

Contents?: true

Size: 1.03 KB

Versions: 5

Compression:

Stored size: 1.03 KB

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
#       opTOO_MANY_SUBENTRIES = -4, // max number of subentries already reached
#       opEXCEEDED_WORK_LIMIT = -5  // operation did too much work
#   };
#
# ===========================================================================
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
    member :op_too_many_subentries, -4
    member :op_exceeded_work_limit, -5

    seal
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
stellar-base-0.23.1 generated/stellar/operation_result_code.rb
stellar-base-0.23.0 generated/stellar/operation_result_code.rb
stellar-base-0.23.0.rc2 generated/stellar/operation_result_code.rb
stellar-base-0.23.0.rc1 generated/stellar/operation_result_code.rb
stellar-base-0.23.0.pre1 generated/stellar/operation_result_code.rb