🐛 Fix services unimplmented

This commit is contained in:
2026-02-04 13:54:47 +08:00
parent 12199d99b7
commit 2641814a22
5 changed files with 46 additions and 34 deletions

View File

@@ -107,6 +107,6 @@ public class PaymentServiceGrpc(PaymentService paymentService)
)
{
var walletFund = await paymentService.GetWalletFundAsync(Guid.Parse(request.FundId));
return walletFund.ToProtoValue();
return walletFund?.ToProtoValueWithRecipients() ?? new WalletFund();
}
}