calculateHash method

Hash calculateHash()

Calculate transaction hash (TXID)

Implementation

Hash calculateHash() {
  final serialized = _serializeForHash();
  return HashUtils.doubleSha256(serialized);
}