Sha256: 6e73f7a645e88a91dfc9fca8a5003ed09ff7a38d931b04bc3dc13d89d4650141
Contents?: true
Size: 1.83 KB
Versions: 5
Compression:
Stored size: 1.83 KB
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # enum PathPaymentResultCode # { # // codes considered as "success" for the operation # PATH_PAYMENT_SUCCESS = 0, // success # # // codes considered as "failure" for the operation # PATH_PAYMENT_MALFORMED = -1, // bad input # PATH_PAYMENT_UNDERFUNDED = -2, // not enough funds in source account # PATH_PAYMENT_SRC_NO_TRUST = -3, // no trust line on source account # PATH_PAYMENT_SRC_NOT_AUTHORIZED = -4, // source not authorized to transfer # PATH_PAYMENT_NO_DESTINATION = -5, // destination account does not exist # PATH_PAYMENT_NO_TRUST = -6, // dest missing a trust line for asset # PATH_PAYMENT_NOT_AUTHORIZED = -7, // dest not authorized to hold asset # PATH_PAYMENT_LINE_FULL = -8, // dest would go above their limit # PATH_PAYMENT_TOO_FEW_OFFERS = -9, // not enough offers to satisfy path # PATH_PAYMENT_OVER_SENDMAX = -10 // could not satisfy sendmax # }; # # =========================================================================== module Stellar class PathPaymentResultCode < XDR::Enum member :path_payment_success, 0 member :path_payment_malformed, -1 member :path_payment_underfunded, -2 member :path_payment_src_no_trust, -3 member :path_payment_src_not_authorized, -4 member :path_payment_no_destination, -5 member :path_payment_no_trust, -6 member :path_payment_not_authorized, -7 member :path_payment_line_full, -8 member :path_payment_too_few_offers, -9 member :path_payment_over_sendmax, -10 seal end end
Version data entries
5 entries across 5 versions & 1 rubygems