Class LedgerCloseMetaV1

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

public class LedgerCloseMetaV1 extends Object
LedgerCloseMetaV1's original definition in the XDR file is:
 struct LedgerCloseMetaV1
 {
     LedgerCloseMetaExt ext;

     LedgerHeaderHistoryEntry ledgerHeader;

     GeneralizedTransactionSet 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<>;

     // Size in bytes of BucketList, to support downstream
     // systems calculating storage fees correctly.
     uint64 totalByteSizeOfBucketList;

     // Temp keys that are being evicted at this ledger.
     LedgerKey evictedTemporaryLedgerKeys<>;

     // Archived restorable ledger entries that are being
     // evicted at this ledger.
     LedgerEntry evictedPersistentLedgerEntries<>;
 };