decode static method

XdrLedgerHeaderHistoryEntry decode(
  1. XdrDataInputStream stream
)

Implementation

static XdrLedgerHeaderHistoryEntry decode(XdrDataInputStream stream) {
  XdrHash hash = XdrHash.decode(stream);
  XdrLedgerHeader header = XdrLedgerHeader.decode(stream);
  XdrLedgerHeaderHistoryEntryExt ext =
      XdrLedgerHeaderHistoryEntryExt.decode(stream);
  return XdrLedgerHeaderHistoryEntry(hash, header, ext);
}