hash property

  1. @override
Uint8List? hash
override

Hash

Implementation

@override
Uint8List? get hash {
  if (super.hash == null) {
    if (_a.output != null) {
      super.hash = _a.output!.sublist(2, 22);
    }
    if (_a.address != null) {
      super.hash = _addressParse['hash']!;
    }

    if (redeem?.output != null) {
      super.hash = bitcoin.crypto.hash160(redeem!.output!);
    }
  }
  return super.hash;
}
void hash=(Uint8List? _hash)
inherited

Payment Hash

Implementation

Uint8List? hash;