decode static method

Implementation

static XdrSCPStatementConfirm decode(XdrDataInputStream stream) {
  XdrSCPBallot ballot = XdrSCPBallot.decode(stream);
  XdrUint32 nPrepared = XdrUint32.decode(stream);
  XdrUint32 nCommit = XdrUint32.decode(stream);
  XdrUint32 nH = XdrUint32.decode(stream);
  XdrHash quorumSetHash = XdrHash.decode(stream);
  return XdrSCPStatementConfirm(
      ballot, nPrepared, nCommit, nH, quorumSetHash);
}