checkInputsNotOwned method

  1. @override
Future<MaybeMixedInputScripts> checkInputsNotOwned({
  1. required FutureOr<bool> isOwned(
    1. Uint8List
    ),
})

Implementation

@override
Future<MaybeMixedInputScripts> checkInputsNotOwned(
    {required FutureOr<bool> Function(Uint8List) isOwned}) async {
  try {
    final res = await super.checkInputsNotOwned(isOwned: isOwned);
    return MaybeMixedInputScripts._(field0: res.field0);
  } on error.PayjoinError catch (e) {
    throw mapPayjoinError(e);
  }
}