generated/stellar/transaction_result_code.rb in stellar-base-0.31.0 vs generated/stellar/transaction_result_code.rb in stellar-base-0.32.0

- old
+ new

@@ -24,11 +24,14 @@ # txBAD_AUTH_EXTRA = -10, // unused signatures attached to transaction # txINTERNAL_ERROR = -11, // an unknown error occurred # # txNOT_SUPPORTED = -12, // transaction type not supported # txFEE_BUMP_INNER_FAILED = -13, // fee bump inner transaction failed -# txBAD_SPONSORSHIP = -14 // sponsorship not confirmed +# txBAD_SPONSORSHIP = -14, // sponsorship not confirmed +# txBAD_MIN_SEQ_AGE_OR_GAP = +# -15, // minSeqAge or minSeqLedgerGap conditions not met +# txMALFORMED = -16 // precondition is invalid # }; # # =========================================================================== module Stellar class TransactionResultCode < XDR::Enum @@ -46,9 +49,11 @@ member :tx_bad_auth_extra, -10 member :tx_internal_error, -11 member :tx_not_supported, -12 member :tx_fee_bump_inner_failed, -13 member :tx_bad_sponsorship, -14 + member :tx_bad_min_seq_age_or_gap, -15 + member :tx_malformed, -16 seal end end