decode method

XdrLedgerKeyAccount decode (
  1. XdrDataInputStream stream
)

Implementation

static XdrLedgerKeyAccount decode(XdrDataInputStream stream) {
  XdrLedgerKeyAccount decodedLedgerKeyAccount = XdrLedgerKeyAccount();
  decodedLedgerKeyAccount.accountID = XdrAccountID.decode(stream);
  return decodedLedgerKeyAccount;
}