checkInputsNotOwned method
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);
}
}