decode method

XdrUint256 decode (
  1. XdrDataInputStream stream
)

Implementation

static XdrUint256 decode(XdrDataInputStream stream) {
  XdrUint256 decodedUint256 = XdrUint256();
  int uint256size = 32;
  decodedUint256.uint256 = stream.readBytes(uint256size);
  return decodedUint256;
}