OutPoint constructor

OutPoint(
  1. Uint8List hash,
  2. int n
)

Implementation

OutPoint(Uint8List hash, this.n)
  : _hash = copyCheckBytes(hash, 32, name: "Tx hash") {
  checkUint32(n, "this.n");
}