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

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmdssi committed Jan 25, 2024
1 parent 023b5e6 commit 7cd68db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ export async function checkOperationStatus(
}

if (err instanceof OperationFailedError) {
let errorMsg = 'runtime_error';
const errorMsg = 'runtime_error';
// try {
// const indexer = indexerPool.getSpecificIndexer(IndexerEnum.TZSTATS);
// const operation = await indexer.getOperationByHash(
Expand Down
2 changes: 1 addition & 1 deletion src/services/clients/indexer-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ export class IndexerClient extends AbstractClient {
const limit = params.limit || 20;
const offset = params.offset || 0;

let domainAndPath = `${indexerUrl}${pathToContractCalls}`;
const domainAndPath = `${indexerUrl}${pathToContractCalls}`;
let queryParams = `limit=${limit}&offset=${offset}`;

switch (indexerName) {
Expand Down

0 comments on commit 7cd68db

Please sign in to comment.