buildNonIncentivizing method
Implementation
@override
Future<RequestContext> buildNonIncentivizing(
{required BigInt minFeeRate}) async {
try {
final res = await super.buildNonIncentivizing(minFeeRate: minFeeRate);
return RequestContext._(field0: res.field0);
} on error.PayjoinError catch (e) {
throw mapPayjoinError(e);
}
}