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