getAddrHash method

ByteArray getAddrHash()

Extracts and returns the address hash portion of the address. The address hash starts after the tag and extends to TXADDRLEN.

Implementation

ByteArray getAddrHash() {
  return _address.sublist(ADDR_TAG_LEN, TXADDRLEN);
}