generated/stellar/transaction_result_code.rb in stellar-base-0.23.1 vs generated/stellar/transaction_result_code.rb in stellar-base-0.24.0.pre.1

- old
+ new

@@ -22,12 +22,13 @@ # txNO_ACCOUNT = -8, // source account not found # txINSUFFICIENT_FEE = -9, // fee is too small # txBAD_AUTH_EXTRA = -10, // unused signatures attached to transaction # txINTERNAL_ERROR = -11, // an unknown error occured # -# txNOT_SUPPORTED = -12, // transaction type not supported -# txFEE_BUMP_INNER_FAILED = -13 // fee bump inner transaction failed +# txNOT_SUPPORTED = -12, // transaction type not supported +# txFEE_BUMP_INNER_FAILED = -13, // fee bump inner transaction failed +# txBAD_SPONSORSHIP = -14 // sponsorship not confirmed # }; # # =========================================================================== module Stellar class TransactionResultCode < XDR::Enum @@ -44,9 +45,10 @@ member :tx_insufficient_fee, -9 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 seal end end