fix: remove unnecessary type parameter from WithdrawBalance handling
Build and Deploy to Kubernetes / build-and-deploy (push) Successful in 1m31s

This commit is contained in:
masoodafar-web
2025-12-27 06:22:28 +03:30
parent c53056c750
commit a429a2328a
@@ -30,7 +30,7 @@ public class UserWalletService : UserWalletContract.UserWalletContractBase
}
public override async Task<Empty> WithdrawBalance(WithdrawBalanceRequest request, ServerCallContext context)
{
return await _dispatchRequestToCQRS.Handle<WithdrawBalanceRequest, WithdrawBalanceCommand, Empty>(request, context);
return await _dispatchRequestToCQRS.Handle<WithdrawBalanceRequest, WithdrawBalanceCommand>(request, context);
}
public override async Task<GetUserWithdrawalsResponse> GetUserWithdrawals(GetUserWithdrawalsRequest request, ServerCallContext context)
{