toTapleafTaggedHash method

Uint8List toTapleafTaggedHash()

Implementation

Uint8List toTapleafTaggedHash() {
  final leafVarBytes = Uint8List.fromList([
    ...Uint8List.fromList([LEAF_VERSION_TAPSCRIPT]),
    ...prependVarint(toBytes())
  ]);
  return taggedHash(leafVarBytes, "TapLeaf");
}