Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Commit

Permalink
fix: parameters argument now used
Browse files Browse the repository at this point in the history
  • Loading branch information
justinemmanuelmercado committed May 26, 2020
1 parent 7d06fbc commit e153121
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/sections/products.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,14 +141,13 @@ export class Products {
constructor(private httpClient: HttpClient) {}

async getMyFeesEstimate(
// eslint-disable-next-line @typescript-eslint/no-unused-vars
_parameters: GetMyFeesEstimateParameters,
parameters: GetMyFeesEstimateParameters,
): Promise<[GetMyFeesEstimateResponse, RequestMeta]> {
const [response, meta] = await this.httpClient.request('POST', {
resource: Resource.Products,
version: PRODUCTS_API_VERSION,
action: 'GetMyFeesEstimate',
parameters: {}, // Patch after pushing fix to clean dependencies to master
parameters,
})

return GetMyFeesEstimateResponse.decode(response).caseOf({
Expand Down

0 comments on commit e153121

Please sign in to comment.