Sha256: 321bee6d6a1290e479558ba8ae68e1e5c8aa46394bbcda68ccdf8c101201e0f0

Contents?: true

Size: 1.42 KB

Versions: 2

Compression:

Stored size: 1.42 KB

Contents

# This code was automatically generated using xdrgen
# DO NOT EDIT or your changes may be overwritten

require 'xdr'

# === xdr source ============================================================
#
#   enum AllowTrustResultCode
#   {
#       // codes considered as "success" for the operation
#       ALLOW_TRUST_SUCCESS = 0,
#       // codes considered as "failure" for the operation
#       ALLOW_TRUST_MALFORMED = -1,     // asset is not ASSET_TYPE_ALPHANUM
#       ALLOW_TRUST_NO_TRUST_LINE = -2, // trustor does not have a trustline
#                                       // source account does not require trust
#       ALLOW_TRUST_TRUST_NOT_REQUIRED = -3,
#       ALLOW_TRUST_CANT_REVOKE = -4,     // source account can't revoke trust,
#       ALLOW_TRUST_SELF_NOT_ALLOWED = -5, // trusting self is not allowed
#       ALLOW_TRUST_LOW_RESERVE = -6 // claimable balances can't be created
#                                    // on revoke due to low reserves
#   };
#
# ===========================================================================
module Stellar
  class AllowTrustResultCode < XDR::Enum
    member :allow_trust_success,            0
    member :allow_trust_malformed,          -1
    member :allow_trust_no_trust_line,      -2
    member :allow_trust_trust_not_required, -3
    member :allow_trust_cant_revoke,        -4
    member :allow_trust_self_not_allowed,   -5
    member :allow_trust_low_reserve,        -6

    seal
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
stellar-base-0.31.0 generated/stellar/allow_trust_result_code.rb
stellar-base-0.30.0 generated/stellar/allow_trust_result_code.rb