xdr/Stellar-ledger.x in stellar-base-0.13.0 vs xdr/Stellar-ledger.x in stellar-base-0.14.0

- old
+ new

@@ -263,11 +263,21 @@ struct OperationMeta { LedgerEntryChanges changes; }; +struct TransactionMetaV1 +{ + LedgerEntryChanges txChanges; // tx level changes if any + OperationMeta operations<>; // meta for each operation +}; + +// this is the meta produced when applying transactions +// it does not include pre-apply updates such as fees union TransactionMeta switch (int v) { case 0: OperationMeta operations<>; +case 1: + TransactionMetaV1 v1; }; }