Skip to content

Commit

Permalink
feat: new handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
Vardominator committed Dec 13, 2024
1 parent adfa5d7 commit 90f18fc
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/api/assets/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -446,10 +446,7 @@ export const AssetsApiAxiosParamCreator = (configuration: Configuration) => ({
): RequestArgs => {
// verify required parameter 'policy' is not null or undefined
assertParamExists('policyUtxos', 'policy', policy);
const localVarPath = `/policy/{policy}/utxos`.replace(
`{${'policy'}}`,
encodeURIComponent(String(policy)),
);
const localVarPath = `/policy/{policy}/utxos`.replace(`{${'policy'}}`, encodeURIComponent(String(policy)));
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
const { baseOptions } = configuration;
Expand Down

0 comments on commit 90f18fc

Please sign in to comment.