buildRecommended method

  1. @override
Future<RequestContext> buildRecommended({
  1. required BigInt minFeeRate,
  2. dynamic hBigInt,
})

Implementation

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