Class LedgerCloseMetaV0

java.lang.Object
org.stellar.sdk.xdr.LedgerCloseMetaV0

public class LedgerCloseMetaV0 extends Object
LedgerCloseMetaV0's original definition in the XDR file is:
 struct LedgerCloseMetaV0
 {
     LedgerHeaderHistoryEntry ledgerHeader;
     // NB: txSet is sorted in "Hash order"
     TransactionSet txSet;

     // NB: transactions are sorted in apply order here
     // fees for all transactions are processed first
     // followed by applying transactions
     TransactionResultMeta txProcessing<>;

     // upgrades are applied last
     UpgradeEntryMeta upgradesProcessing<>;

     // other misc information attached to the ledger close
     SCPHistoryEntry scpInfo<>;
 };