Sha256: 03310af45c4ac94558d8786e3a0837879f4f2ef0026111a96171c128dd12ed9b
Contents?: true
Size: 1.03 KB
Versions: 11
Compression:
Stored size: 1.03 KB
Contents
# Automatically generated on 2015-05-13T15:00:04-07:00 # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # enum AccountMergeResultCode # { # // codes considered as "success" for the operation # ACCOUNT_MERGE_SUCCESS = 0, # // codes considered as "failure" for the operation # ACCOUNT_MERGE_MALFORMED = -1, // can't merge onto itself # ACCOUNT_MERGE_NO_ACCOUNT = -2, // destination does not exist # ACCOUNT_MERGE_HAS_CREDIT = -3, // account has active trust lines # ACCOUNT_MERGE_CREDIT_HELD = -4 // an issuer cannot be merged if used # }; # # =========================================================================== module Stellar class AccountMergeResultCode < XDR::Enum member :account_merge_success, 0 member :account_merge_malformed, -1 member :account_merge_no_account, -2 member :account_merge_has_credit, -3 member :account_merge_credit_held, -4 seal end end
Version data entries
11 entries across 11 versions & 1 rubygems