xdr/Stellar-transaction.x in stellar-base-0.17.0 vs xdr/Stellar-transaction.x in stellar-base-0.18.0

- old
+ new

@@ -224,10 +224,12 @@ /* Bump Sequence increases the sequence to a given level + Threshold: low + Result: BumpSequenceResult */ struct BumpSequenceOp { @@ -606,10 +608,12 @@ // 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_IMMUTABLE_SET = -3, // source account has AUTH_IMMUTABLE set ACCOUNT_MERGE_HAS_SUB_ENTRIES = -4, // account has trust lines/offers - ACCOUNT_MERGE_SEQNUM_TOO_FAR = -5 // sequence number is over max allowed + ACCOUNT_MERGE_SEQNUM_TOO_FAR = -5, // sequence number is over max allowed + ACCOUNT_MERGE_DEST_FULL = -6 // can't add source balance to + // destination balance }; union AccountMergeResult switch (AccountMergeResultCode code) { case ACCOUNT_MERGE_SUCCESS: